2009-02-05 15:35:38 +00:00
|
|
|
#######################################
|
|
|
|
# Effect
|
|
|
|
|
|
|
|
# .desktop files
|
|
|
|
install( FILES
|
2014-03-17 13:56:11 +00:00
|
|
|
lookingglass.desktop
|
2009-02-05 15:35:38 +00:00
|
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
|
|
|
|
|
|
|
# Data files
|
|
|
|
install( FILES
|
2014-03-17 13:56:11 +00:00
|
|
|
data/1.10/lookingglass.frag
|
2013-05-21 08:56:10 +00:00
|
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin/shaders/1.10 )
|
|
|
|
install( FILES
|
2014-03-17 13:56:11 +00:00
|
|
|
data/1.40/lookingglass.frag
|
2013-05-21 08:56:10 +00:00
|
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin/shaders/1.40 )
|
2009-02-05 15:35:38 +00:00
|
|
|
|
|
|
|
#######################################
|
|
|
|
# Config
|
2014-03-17 13:56:11 +00:00
|
|
|
set(kwin_lookingglass_config_SRCS lookingglass_config.cpp)
|
|
|
|
qt5_wrap_ui(kwin_lookingglass_config_SRCS lookingglass_config.ui)
|
|
|
|
kconfig_add_kcfg_files(kwin_lookingglass_config_SRCS lookingglassconfig.kcfgc)
|
|
|
|
|
|
|
|
add_library(kwin_lookingglass_config MODULE ${kwin_lookingglass_config_SRCS})
|
|
|
|
|
|
|
|
target_link_libraries(kwin_lookingglass_config
|
|
|
|
kwineffects
|
|
|
|
KF5::ConfigWidgets
|
|
|
|
KF5::GlobalAccel
|
|
|
|
KF5::I18n
|
|
|
|
KF5::Service
|
|
|
|
KF5::XmlGui
|
|
|
|
)
|
|
|
|
|
|
|
|
kservice_desktop_to_json(kwin_lookingglass_config lookingglass_config.desktop)
|
|
|
|
|
|
|
|
install(
|
|
|
|
TARGETS
|
|
|
|
kwin_lookingglass_config
|
|
|
|
DESTINATION
|
|
|
|
${PLUGIN_INSTALL_DIR}/kwin/effects/configs
|
|
|
|
)
|