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

TEMPLATE = lib
TARGET = qt5ct-style
QT += widgets

# Input

CONFIG += plugin

target.path = $$PLUGINDIR/styles
INSTALLS += target

INCLUDEPATH += ../

HEADERS += \
    qt5ctproxystyle.h \
    ../qt5ct/qt5ct.h

SOURCES += \
    plugin.cpp \
    qt5ctproxystyle.cpp \
    ../qt5ct/qt5ct.cpp

OTHER_FILES += \
    qt5ct.json
bgstack15