2211a951e7
Summary: A while ago desktop effects and compositing settings lived under the same roof {F6584639} {F6584642} but time has passed and now those two have their own kcms. This causes some issues: * for newcomers it's harder to find code of the Desktop Effects KCM; * git history doesn't look good, e.g. "[kcmkwin/compositing] Add some bugs to Desktop Effects KCM to fix later"; * in general, the mix of two doesn't look good in the code. This change splits out the Desktop Effects KCM. Unfortunately, in order to have more nicer code I had to refactor EffectModel a little bit. Before: {F6584669} After: {F6587570} Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: davidedmundson, ltoscano, mart, ngraham, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D18703
33 lines
1 KiB
CMake
33 lines
1 KiB
CMake
#########################################################################
|
|
# KI18N Translation Domain for this library
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kcmkwincompositing\")
|
|
|
|
add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
|
|
|
|
remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_STRICT_ITERATORS -DQT_NO_CAST_FROM_BYTEARRAY)
|
|
|
|
################# configure checks and create the configured files #################
|
|
|
|
set(kwincomposing_SRC
|
|
main.cpp
|
|
compositing.cpp)
|
|
|
|
qt5_add_dbus_interface( kwincomposing_SRC
|
|
${KWIN_SOURCE_DIR}/org.kde.kwin.Compositing.xml kwin_compositing_interface)
|
|
|
|
ki18n_wrap_ui(kwincomposing_SRC compositing.ui)
|
|
|
|
add_library(kwincompositing MODULE ${kwincomposing_SRC})
|
|
|
|
target_link_libraries(kwincompositing
|
|
Qt5::DBus
|
|
Qt5::Widgets
|
|
KF5::CoreAddons
|
|
KF5::ConfigCore
|
|
KF5::I18n
|
|
KF5::KCMUtils
|
|
)
|
|
|
|
INSTALL(TARGETS kwincompositing DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
install(FILES kwincompositing.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
################# list the subdirectories #################
|