2009-02-05 15:35:38 +00:00
|
|
|
#######################################
|
|
|
|
# Effect
|
|
|
|
install( FILES
|
2014-03-17 13:56:11 +00:00
|
|
|
presentwindows.desktop
|
2009-02-05 15:35:38 +00:00
|
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
2013-03-11 08:33:38 +00:00
|
|
|
install( FILES
|
2014-03-17 13:56:11 +00:00
|
|
|
main.qml
|
2013-03-11 08:33:38 +00:00
|
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin/effects/presentwindows/
|
|
|
|
)
|
2009-02-05 15:35:38 +00:00
|
|
|
|
|
|
|
#######################################
|
|
|
|
# Config
|
2014-03-17 13:56:11 +00:00
|
|
|
set(kwin_presentwindows_config_SRCS presentwindows_config.cpp)
|
|
|
|
qt5_wrap_ui(kwin_presentwindows_config_SRCS presentwindows_config.ui)
|
|
|
|
kconfig_add_kcfg_files(kwin_presentwindows_config_SRCS presentwindowsconfig.kcfgc)
|
|
|
|
|
|
|
|
add_library(kwin_presentwindows_config MODULE ${kwin_presentwindows_config_SRCS})
|
2009-02-05 15:35:38 +00:00
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
target_link_libraries(kwin_presentwindows_config
|
|
|
|
kwineffects
|
|
|
|
KF5::Completion
|
|
|
|
KF5::ConfigWidgets
|
|
|
|
KF5::GlobalAccel
|
|
|
|
KF5::I18n
|
|
|
|
KF5::Service
|
|
|
|
KF5::XmlGui
|
|
|
|
)
|
2009-02-05 15:35:38 +00:00
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
kservice_desktop_to_json(kwin_presentwindows_config presentwindows_config.desktop)
|
2012-09-13 06:49:13 +00:00
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
install(
|
|
|
|
TARGETS
|
|
|
|
kwin_presentwindows_config
|
|
|
|
DESTINATION
|
|
|
|
${PLUGIN_INSTALL_DIR}/kwin/effects/configs
|
|
|
|
)
|