4a1bc2ec96
All KCMs and KWin core use the BuiltInEffects namespace to find and interact with the effects. There is no information left in the desktop file which are of usage. Thus they can be removed.
22 lines
549 B
CMake
22 lines
549 B
CMake
#######################################
|
|
# Effect
|
|
|
|
# Source files
|
|
set( kwin4_effect_builtins_sources ${kwin4_effect_builtins_sources}
|
|
logout/logout.cpp
|
|
)
|
|
|
|
kconfig_add_kcfg_files(kwin4_effect_builtins_sources logout/logoutconfig.kcfgc)
|
|
|
|
# Data files
|
|
install( FILES
|
|
logout/data/1.10/vignetting.frag
|
|
logout/data/1.10/logout-blur.frag
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin/shaders/1.10
|
|
)
|
|
|
|
install( FILES
|
|
logout/data/1.40/vignetting.frag
|
|
logout/data/1.40/logout-blur.frag
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin/shaders/1.40
|
|
)
|