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
|
#-------------------------------------------------
#
# Project created by QtCreator 2020-05-24T09:30:00
#
#-------------------------------------------------
QT -= gui
QT += core widgets
TARGET = keybindings
TEMPLATE = lib
DEFINES += KEYBINDINGS_LIBRARY
CONFIG += c++20 no_keywords link_pkgconfig plugin
DEFINES += QT_DEPRECATED_WARNINGS MODULE_NAME=\\\"keybindings\\\"
include($$PWD/../../common/common.pri)
INCLUDEPATH += \
/usr/include/KF6/KGlobalAccel
PKGCONFIG += \
gtk+-3.0 \
glib-2.0 \
gobject-2.0 \
gio-2.0 \
cairo \
gsettings-qt\
dconf
SOURCES += \
dconf-util.c \
keybindings-manager.cpp \
keybindings-plugin.cpp \
keybindings-wayland-manager.cpp
HEADERS += \
dconf-util.h \
keybindings-manager.h \
keybindings-plugin.h \
keybindings-wayland-manager.h
keybindings_lib.path = $${PLUGIN_INSTALL_DIRS}
keybindings_lib.files = $$OUT_PWD/libkeybindings.so
INSTALLS += keybindings_lib
|