blob: 0f68e7e4f7ce65a88ff72860528b82ade95bb1e4 (
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
|
include(../../lthemeengine.pri)
TEMPLATE = lib
TARGET = lthemeengine-style
QT *= widgets
# Input
CONFIG *= plugin
target.path = $$PLUGINDIR/styles
INSTALLS += target
INCLUDEPATH += ../
HEADERS += \
lthemeengineproxystyle.h \
../lthemeengine/lthemeengine.h
SOURCES += \
plugin.cpp \
lthemeengineproxystyle.cpp \
../lthemeengine/lthemeengine.cpp
OTHER_FILES += \
lthemeengine.json
|