863726a085
LookingGlass does not inherit ShaderEffect any more and uses just a fragment shader. It still renders to a FBO, this could probably be improved.
31 lines
763 B
CMake
31 lines
763 B
CMake
#######################################
|
|
# Effect
|
|
|
|
# Source files
|
|
set( kwin4_effect_builtins_sources ${kwin4_effect_builtins_sources}
|
|
lookingglass/lookingglass.cpp
|
|
)
|
|
|
|
# .desktop files
|
|
install( FILES
|
|
lookingglass/lookingglass.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
|
|
|
# Data files
|
|
install( FILES
|
|
lookingglass/data/lookingglass.frag
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin )
|
|
|
|
#######################################
|
|
# Config
|
|
|
|
# Source files
|
|
set( kwin4_effect_builtins_config_sources ${kwin4_effect_builtins_config_sources}
|
|
lookingglass/lookingglass_config.cpp
|
|
lookingglass/lookingglass_config.ui
|
|
)
|
|
|
|
# .desktop files
|
|
install( FILES
|
|
lookingglass/lookingglass_config.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|