blob: 1857d0de80c3c598d5b312802be4c8fb38e469e3 (
plain) (
blame)
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(../../qt6gtk2.pri)
TEMPLATE = lib
TARGET = qt6gtk2-style
QT += core-private gui-private widgets-private
DEFINES += QT_NO_ANIMATION
# Input
HEADERS += qgtk2painter_p.h \
qgtkglobal_p.h \
qgtkpainter_p.h \
qgtkstyle_p.h \
qgtkstyle_p_p.h \
qstylehelper_p.h
SOURCES += qgtk2painter.cpp qgtkpainter.cpp qgtkstyle.cpp qgtkstyle_p.cpp \
plugin.cpp \
qstylehelper.cpp
CONFIG += plugin \
link_pkgconfig \
PKGCONFIG += gtk+-2.0 x11
target.path = $$PLUGINDIR/styles
INSTALLS += target
|