blob: 3dca4fd1c6c3a25a51b0d2f0ee44c1d233dde7d9 (
plain)
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
30
31
|
include(../../lthemeengine.pri)
TEMPLATE = lib
TARGET = lthemeengine
CONFIG *= plugin
greaterThan(QT_MINOR_VERSION, 7) {
QT += gui-private theme_support-private
} else {
QT += gui-private platformsupport-private
}
!contains(DEFINES, QT_NO_DBUS):greaterThan(QT_MINOR_VERSION, 5) {
QT += dbus
}
SOURCES += \
main.cpp \
lthemeengineplatformtheme.cpp \
../lthemeengine/lthemeengine.cpp
OTHER_FILES += lthemeengine.json
INCLUDEPATH += ../
HEADERS += \
lthemeengineplatformtheme.h \
../lthemeengine/lthemeengine.h
target.path = $$PLUGINDIR/platformthemes
INSTALLS += target
|