2014-04-30 06:55:58 +00:00
|
|
|
# KI18N Translation Domain for this library
|
|
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kcmkwinscreenedges\")
|
|
|
|
|
2014-04-04 08:45:16 +00:00
|
|
|
include_directories(${KWIN_SOURCE_DIR}/effects)
|
2019-09-17 09:15:35 +00:00
|
|
|
set(kcm_screenedges_SRCS
|
2009-02-27 15:40:53 +00:00
|
|
|
monitor.cpp
|
2013-09-29 08:09:28 +00:00
|
|
|
screenpreviewwidget.cpp
|
2019-09-17 09:15:35 +00:00
|
|
|
)
|
|
|
|
qt5_add_dbus_interface(kcm_screenedges_SRCS ${KWIN_SOURCE_DIR}/org.kde.kwin.Effects.xml kwin_effects_interface)
|
2017-04-02 18:56:52 +00:00
|
|
|
|
|
|
|
set(kcm_kwinscreenedges_PART_SRCS main.cpp ${kcm_screenedges_SRCS})
|
2019-09-17 09:15:35 +00:00
|
|
|
ki18n_wrap_ui(kcm_kwinscreenedges_PART_SRCS main.ui)
|
|
|
|
add_library(kcm_kwinscreenedges MODULE ${kcm_kwinscreenedges_PART_SRCS})
|
2017-04-02 18:56:52 +00:00
|
|
|
set(kcm_screenedges_LIBS
|
2019-09-18 10:31:02 +00:00
|
|
|
Qt5::DBus
|
|
|
|
|
2013-12-11 20:41:47 +00:00
|
|
|
KF5::Completion
|
|
|
|
KF5::ConfigCore
|
|
|
|
KF5::ConfigWidgets
|
|
|
|
KF5::I18n
|
2016-10-07 14:20:14 +00:00
|
|
|
KF5::Package
|
2013-10-15 23:36:24 +00:00
|
|
|
KF5::Plasma
|
2019-09-17 09:15:35 +00:00
|
|
|
KF5::Service
|
2019-09-18 10:31:02 +00:00
|
|
|
|
2014-04-04 08:45:16 +00:00
|
|
|
kwin4_effect_builtins
|
2017-04-02 18:56:52 +00:00
|
|
|
)
|
2019-09-17 09:15:35 +00:00
|
|
|
target_link_libraries(kcm_kwinscreenedges ${X11_LIBRARIES} ${kcm_screenedges_LIBS})
|
2017-04-02 18:56:52 +00:00
|
|
|
|
|
|
|
set(kcm_kwintouchscreenedges_PART_SRCS touch.cpp ${kcm_screenedges_SRCS})
|
2019-09-17 09:15:35 +00:00
|
|
|
ki18n_wrap_ui(kcm_kwintouchscreenedges_PART_SRCS touch.ui)
|
|
|
|
add_library(kcm_kwintouchscreen MODULE ${kcm_kwintouchscreenedges_PART_SRCS})
|
|
|
|
target_link_libraries(kcm_kwintouchscreen ${X11_LIBRARIES} ${kcm_screenedges_LIBS})
|
2009-02-27 15:40:53 +00:00
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
install(TARGETS kcm_kwinscreenedges kcm_kwintouchscreen DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
install(FILES kwinscreenedges.desktop kwintouchscreen.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|