blob: d3e38c6fc1e2a11370417cbae8bc5766fe640ae0 (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/notifier
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
LIBS += $$QMMPUI_LIB
unix {
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
PKGCONFIG += x11
QT += x11extras
DEFINES += X11_FOUND
}
|