forked from openkylin/qt5-ukui-platformtheme
55 lines
1.6 KiB
Prolog
55 lines
1.6 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2020-01-03T19:31:51
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += widgets widgets-private KWindowSystem gui gui-private x11extras dbus KWaylandClient
|
|
|
|
TARGET = qt5-style-ukui
|
|
TEMPLATE = lib
|
|
CONFIG += plugin c++11 link_pkgconfig
|
|
PKGCONFIG += gsettings-qt
|
|
LIBS += -lxcb
|
|
|
|
include(../libqt5-ukui-style/libqt5-ukui-style.pri)
|
|
include(qt5-style-ukui/qt5-style-ukui.pri)
|
|
include(qt5-config-style-ukui/qt5-config-style-ukui.pri)
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
|
# depend on your compiler). Please consult the documentation of the
|
|
# deprecated API in order to know how to port your code away from it.
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
#DEFINES += QT_NO_DEBUG_OUTPUT
|
|
DEFINES += QT_MESSAGELOGCONTEXT
|
|
|
|
# You can also make your code fail to compile if you use deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
SOURCES += \
|
|
blur-helper.cpp \
|
|
gesture-helper.cpp \
|
|
window-manager.cpp \
|
|
ukui-style-plugin.cpp \
|
|
readconfig.cpp
|
|
|
|
|
|
HEADERS += \
|
|
blur-helper.h \
|
|
gesture-helper.h \
|
|
window-manager.h \
|
|
ukui-style-plugin.h \
|
|
readconfig.h \
|
|
themeinformation.h
|
|
|
|
DISTFILES += qt5-style-ukui.json
|
|
|
|
unix {
|
|
target.path = $$[QT_INSTALL_PLUGINS]/styles
|
|
INSTALLS += target
|
|
}
|
|
|