f62086f9d3
Test Plan: builds Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D25547
24 lines
589 B
CMake
24 lines
589 B
CMake
#######################################
|
|
|
|
# Config
|
|
set(kwin_showpaint_config_SRCS showpaint_config.cpp)
|
|
ki18n_wrap_ui(kwin_showpaint_config_SRCS showpaint_config.ui)
|
|
|
|
add_library(kwin_showpaint_config MODULE ${kwin_showpaint_config_SRCS})
|
|
|
|
target_link_libraries(kwin_showpaint_config
|
|
KF5::ConfigWidgets
|
|
KF5::GlobalAccel
|
|
KF5::I18n
|
|
KF5::XmlGui
|
|
)
|
|
|
|
kcoreaddons_desktop_to_json(kwin_showpaint_config showpaint_config.desktop SERVICE_TYPES kcmodule.desktop)
|
|
|
|
install(
|
|
TARGETS
|
|
kwin_showpaint_config
|
|
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/kwin/effects/configs
|
|
)
|