e200d74031
Summary: It is known to create problems especially on multi-screen and is not as important on Wayland as it used to be on X11 thanks to things like buffer age and in general better rendering. Test Plan: Opened the config module and verified that the option is hidden Reviewers: #kwin, #plasma Subscribers: plasma-devel, kwin Tags: #plasma Differential Revision: https://phabricator.kde.org/D9879
25 lines
709 B
CMake
25 lines
709 B
CMake
#######################################
|
|
# Config
|
|
set(kwin_blur_config_SRCS blur_config.cpp)
|
|
ki18n_wrap_ui(kwin_blur_config_SRCS blur_config.ui)
|
|
qt5_add_dbus_interface(kwin_blur_config_SRCS ${kwin_effects_dbus_xml} kwineffects_interface)
|
|
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
|
|
Qt5::DBus
|
|
KF5::ConfigWidgets
|
|
KF5::I18n
|
|
KF5::Service
|
|
KF5::WindowSystem
|
|
)
|
|
|
|
kcoreaddons_desktop_to_json(kwin_blur_config blur_config.desktop SERVICE_TYPES kcmodule.desktop)
|
|
|
|
install(
|
|
TARGETS
|
|
kwin_blur_config
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/kwin/effects/configs
|
|
)
|