blob: dd0ca0999debfdb116e042da4c02f466819f8b2b (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/statusicon
HEADERS += statusiconfactory.h \
statusicon.h \
settingsdialog.h \
qmmptrayicon.h \
statusiconpopupwidget.h \
coverwidget.h
SOURCES += statusiconfactory.cpp \
statusicon.cpp \
settingsdialog.cpp \
qmmptrayicon.cpp \
statusiconpopupwidget.cpp \
coverwidget.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc \
images/tray_images.qrc
LIBS += $$QMMPUI_LIB
unix {
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
|