blob: 971d85f7b84a315e08d7e63040f5ffd6563d6a3d (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/notifier
CONFIG += link_qmmpui
HEADERS += notifierfactory.h \
notifier.h \
popupwidget.h \
settingsdialog.h
SOURCES += notifierfactory.cpp \
notifier.cpp \
popupwidget.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
RESOURCES = notifier_images.qrc \
translations/translations.qrc
unix {
PKGCONFIG += x11
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
|