62d71bc247
Depending on the state of the show window geometry we need to load or unload the effect. BUG: 343272 FIXED-IN: 5.2.1 REVIEW: 122258
18 lines
920 B
CMake
18 lines
920 B
CMake
########### next target ###############
|
|
# KI18N Translation Domain for this library
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kcmkwm\")
|
|
|
|
set(kcm_kwinoptions_PART_SRCS windows.cpp mouse.cpp main.cpp ${KWIN_SOURCE_DIR}/effects/effect_builtins.cpp )
|
|
ki18n_wrap_ui(kcm_kwinoptions_PART_SRCS actions.ui advanced.ui focus.ui mouse.ui moving.ui)
|
|
qt5_add_dbus_interface( kcm_kwinoptions_PART_SRCS
|
|
${KWIN_SOURCE_DIR}/org.kde.kwin.Effects.xml kwin_effects_interface)
|
|
add_library(kcm_kwinoptions MODULE ${kcm_kwinoptions_PART_SRCS})
|
|
target_link_libraries(kcm_kwinoptions Qt5::DBus KF5::Completion KF5::I18n KF5::ConfigWidgets KF5::Service KF5::WindowSystem)
|
|
install(TARGETS kcm_kwinoptions DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES kwinoptions.desktop kwinactions.desktop kwinadvanced.desktop
|
|
kwinfocus.desktop kwinmoving.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR})
|