blob: 22b57795838c610435900cc02782fb8ac198b899 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
include(../../plugins.pri)
QT += dbus
TARGET = $$PLUGINS_PREFIX/General/hal
QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libhal.so
RESOURCES = translations/translations.qrc
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
HEADERS += halfactory.h \
halplugin.h \
halmanager.h \
haldevice.h \
settingsdialog.h
SOURCES += halfactory.cpp \
halplugin.cpp \
halmanager.cpp \
haldevice.cpp \
settingsdialog.cpp
LIBS += -lqmmpui
FORMS += settingsdialog.ui
|