blob: 064c7642de9680a8fbae1d511d5b5b2d248b3bea (
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
32
33
34
35
|
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
!equals (DISABLE_WIDGETS,1) {
QT += widgets
}
OTHER_FILES += lthemeengine.json
INCLUDEPATH += ../
HEADERS += \
lthemeengineplatformtheme.h \
../lthemeengine/lthemeengine.h
target.path = $$PLUGINDIR/platformthemes
INSTALLS += target
|