blob: 21ec807378e2eab6c497dfd77b8a6adb9ade2ed3 (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/mpris
QT += dbus
CONFIG += link_qmmpui
HEADERS += mprisfactory.h \
mpris.h \
mpris1/playerobject.h \
mpris1/rootobject.h \
mpris1/tracklistobject.h \
mpris2/root2object.h \
mpris2/player2object.h
SOURCES += mprisfactory.cpp \
mpris.cpp \
mpris1/playerobject.cpp \
mpris1/rootobject.cpp \
mpris1/tracklistobject.cpp \
mpris2/root2object.cpp \
mpris2/player2object.cpp
RESOURCES = translations/translations.qrc
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
|