blob: 0301f2b3fc721c24aa39c4192f5d836e18d2f93b (
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
29
30
31
32
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/statusicon
HEADERS += statusiconfactory.h \
statusicon.h \
settingsdialog.h \
qmmptrayicon.h \
coverwidget.h
SOURCES += statusiconfactory.cpp \
statusicon.cpp \
settingsdialog.cpp \
qmmptrayicon.cpp \
coverwidget.cpp
contains(DEFINES, QMMP_WS_X11) {
HEADERS += statusiconpopupwidget.h
SOURCES += statusiconpopupwidget.cpp
}
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc \
images/tray_images.qrc
LIBS += $$QMMPUI_LIB
unix {
target.path = $$PLUGIN_DIR/General
INSTALLS += target
}
|