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
|
#-------------------------------------------------
#
# Project created by QtCreator 2020-04-16T09:30:00
#
#-------------------------------------------------
QT += core widgets dbus x11extras gui
TEMPLATE = lib
TARGET = background
CONFIG += no_keywords c++20 create_prl plugin link_pkgconfig app_bundle debug
DEFINES += MODULE_NAME=\\\"backGround\\\"
include($$PWD/../../common/common.pri)
PKGCONFIG += \
gio-2.0 \
gtk+-3.0 \
glib-2.0 \
imlib2
SOURCES += \
$$PWD/background-plugin.cpp \
$$PWD/background-manager.cpp
HEADERS += \
$$PWD/background-plugin.h \
$$PWD/background-manager.h
background_lib.path = $${PLUGIN_INSTALL_DIRS}
background_lib.files += $$OUT_PWD/libbackground.so
INSTALLS += background_lib
|