blob: 7d7cdd4b606d286549f1d87c29c11fdfbac19a24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/mpris
QT += dbus
HEADERS += mprisfactory.h \
mpris.h \
root2object.h \
player2object.h
SOURCES += mprisfactory.cpp \
mpris.cpp \
root2object.cpp \
player2object.cpp
RESOURCES = translations/translations.qrc
LIBS += $$QMMPUI_LIB
target.path = $$PLUGIN_DIR/General
INSTALLS += target
|