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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
#-------------------------------------------------
#
# Project created by QtCreator 2020-05-30T09:30:00
#
#-------------------------------------------------
QT += gui
QT += core widgets dbus
CONFIG += c++20 no_keywords link_pkgconfig plugin
CONFIG += app_bunale
DEFINES += QT_DEPRECATED_WARNINGS
TEMPLATE = lib
TARGET = xsettings
DEFINES += QT_DEPRECATED_WARNINGS MODULE_NAME=\\\"xsettings\\\"
include($$PWD/../../common/common.pri)
PKGCONFIG +=\
glib-2.0 \
gio-2.0 \
gdk-3.0 \
atk \
fontconfig \
xcursor \
xfixes
SOURCES += \
ukui-xsettings-plugin.cpp \
xsettings-manager.cpp \
ukui-xsettings-manager.cpp \
ukui-xft-settings.cpp \
xsettings-common.c \
fontconfig-monitor.c
HEADERS += \
ukui-xsettings-plugin.h \
xsettings-manager.h \
ukui-xsettings-manager.h \
ukui-xft-settings.h \
xsettings-const.h \
xsettings-common.h \
fontconfig-monitor.h
xsettings_lib.path = $${PLUGIN_INSTALL_DIRS}
xsettings_lib.files += $$OUT_PWD/libxsettings.so
INSTALLS += xsettings_lib
|