99947c8bd8
This makes it easier to build against both Qt5 and Qt6 GIT_SILENT
23 lines
604 B
CMake
23 lines
604 B
CMake
#######################################
|
|
# Config
|
|
set(kwin_blur_config_SRCS blur_config.cpp)
|
|
ki18n_wrap_ui(kwin_blur_config_SRCS blur_config.ui)
|
|
kconfig_add_kcfg_files(kwin_blur_config_SRCS blurconfig.kcfgc)
|
|
|
|
add_library(kwin_blur_config MODULE ${kwin_blur_config_SRCS})
|
|
|
|
target_link_libraries(kwin_blur_config
|
|
KF5::ConfigWidgets
|
|
KF5::I18n
|
|
Qt::DBus
|
|
KWinEffectsInterface
|
|
)
|
|
|
|
kcoreaddons_desktop_to_json(kwin_blur_config blur_config.desktop SERVICE_TYPES kcmodule.desktop)
|
|
|
|
install(
|
|
TARGETS
|
|
kwin_blur_config
|
|
DESTINATION
|
|
${KDE_INSTALL_PLUGINDIR}/kwin/effects/configs
|
|
)
|