blob: 49e9c8d8305ec4bec5f81de92079c4743effb8e8 (
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)
unix:TARGET = $$PLUGINS_PREFIX/General/statusicon
unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libstatusicon.so
win32:TARGET = $$PLUGINS_PREFIX/General/statusicon
LIBS += -lqmmpui
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
RESOURCES += images/tray_images.qrc
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
|