blob: 5380030f9919e2673d9c3a5cf3615acc1ee04d79 (
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/notifier
unix:QMAKE_CLEAN =$$PLUGINS_PREFIX/General/libnotifier.so
LIBS += -lqmmpui
RESOURCES = notifier_images.qrc \
translations/translations.qrc
unix {
PKGCONFIG += x11
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
HEADERS += notifierfactory.h \
notifier.h \
popupwidget.h \
settingsdialog.h
win32:HEADERS += ../../../../src/qmmpui/general.h
SOURCES += notifierfactory.cpp \
notifier.cpp \
popupwidget.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
|