blob: 0b40de64fca0795870e410f8bb8303298d529395 (
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
|