aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-theme-engine/src/lthemeengine-style/lthemeengine-style.pro
blob: f858413864c7a5b3dcd923f7fc9514099694b966 (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/qt5ct.h

SOURCES += \
    plugin.cpp \
    lthemeengineproxystyle.cpp \
    ../lthemeengine/qt5ct.cpp

OTHER_FILES += \
    lthemeengine.json
bgstack15