42 lines
1.3 KiB
CMake
42 lines
1.3 KiB
CMake
# KI18N Translation Domain for this library
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kcm_kwindecoration\")
|
|
|
|
add_subdirectory(declarative-plugin)
|
|
|
|
set(kcmkwindecoration_SRCS
|
|
declarative-plugin/buttonsmodel.cpp
|
|
decorationmodel.cpp
|
|
kcm.cpp
|
|
utils.cpp
|
|
)
|
|
|
|
kcmutils_generate_module_data(
|
|
kcmkwindecoration_SRCS
|
|
MODULE_DATA_HEADER kwindecorationdata.h
|
|
MODULE_DATA_CLASS_NAME KWinDecorationData
|
|
SETTINGS_HEADERS kwindecorationsettings.h
|
|
SETTINGS_CLASSES KWinDecorationSettings
|
|
)
|
|
|
|
kconfig_add_kcfg_files(kcmkwindecoration_SRCS kwindecorationsettings.kcfgc GENERATE_MOC)
|
|
|
|
add_library(kcm_kwindecoration MODULE ${kcmkwindecoration_SRCS})
|
|
|
|
target_link_libraries(kcm_kwindecoration
|
|
KDecoration2::KDecoration
|
|
KF5::I18n
|
|
KF5::KCMUtils
|
|
KF5::NewStuff
|
|
KF5::QuickAddons
|
|
Qt5::Quick
|
|
)
|
|
|
|
kcoreaddons_desktop_to_json(kcm_kwindecoration "kwindecoration.desktop" SERVICE_TYPES kcmodule.desktop)
|
|
|
|
# This desktop file is installed only for retrocompatibility with sycoca
|
|
install(FILES kwindecorationsettings.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR})
|
|
install(FILES kwindecoration.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR})
|
|
install(FILES window-decorations.knsrc DESTINATION ${KDE_INSTALL_KNSRCDIR})
|
|
install(TARGETS kcm_kwindecoration DESTINATION ${KDE_INSTALL_PLUGINDIR}/kcms)
|
|
|
|
kpackage_install_package(package kcm_kwindecoration kcms)
|