2013-06-25 14:07:48 +00:00
|
|
|
#########################################################################
|
2014-04-30 07:03:23 +00:00
|
|
|
# KI18N Translation Domain for this library
|
|
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kcmkwincompositing\")
|
2013-06-25 14:07:48 +00:00
|
|
|
|
|
|
|
add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
|
|
|
|
|
2013-12-02 07:56:10 +00:00
|
|
|
remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_STRICT_ITERATORS -DQT_NO_CAST_FROM_BYTEARRAY)
|
2013-06-25 14:07:48 +00:00
|
|
|
|
2014-04-03 14:20:26 +00:00
|
|
|
include_directories(${KWIN_SOURCE_DIR}/effects)
|
|
|
|
|
2013-06-25 14:07:48 +00:00
|
|
|
################# configure checks and create the configured files #################
|
|
|
|
|
|
|
|
set(kwincomposing_SRC
|
|
|
|
model.cpp
|
2013-08-01 16:20:37 +00:00
|
|
|
main.cpp
|
2013-08-17 08:28:09 +00:00
|
|
|
compositing.cpp
|
2013-08-01 16:20:37 +00:00
|
|
|
effectconfig.cpp)
|
2013-06-25 14:07:48 +00:00
|
|
|
|
2014-03-07 13:41:05 +00:00
|
|
|
qt5_add_dbus_interface( kwincomposing_SRC
|
2014-04-02 10:02:36 +00:00
|
|
|
${KWIN_SOURCE_DIR}/org.kde.kwin.Compositing.xml kwin_compositing_interface)
|
2014-03-07 13:41:05 +00:00
|
|
|
qt5_add_dbus_interface( kwincomposing_SRC
|
2014-04-02 10:02:36 +00:00
|
|
|
${KWIN_SOURCE_DIR}/org.kde.kwin.Effects.xml kwin_effects_interface)
|
2013-08-09 12:29:05 +00:00
|
|
|
|
2014-05-23 08:11:02 +00:00
|
|
|
ki18n_wrap_ui(kwincomposing_SRC compositing.ui)
|
|
|
|
|
2013-12-02 08:55:21 +00:00
|
|
|
add_library(kwincompositing MODULE ${kwincomposing_SRC})
|
2013-06-25 14:07:48 +00:00
|
|
|
|
|
|
|
target_link_libraries(kwincompositing
|
2013-12-02 07:56:10 +00:00
|
|
|
Qt5::Quick
|
2018-03-05 19:01:23 +00:00
|
|
|
Qt5::QuickWidgets
|
2013-08-20 17:12:09 +00:00
|
|
|
Qt5::DBus
|
2013-12-02 07:56:10 +00:00
|
|
|
Qt5::Widgets
|
2013-12-13 06:36:42 +00:00
|
|
|
KF5::CoreAddons
|
|
|
|
KF5::ConfigCore
|
|
|
|
KF5::Declarative
|
|
|
|
KF5::I18n
|
2013-09-25 13:45:04 +00:00
|
|
|
KF5::KCMUtils
|
2014-01-12 19:27:10 +00:00
|
|
|
KF5::NewStuff
|
[kcmkwin] Move effects model into a shared library
Summary:
The main motivation for moving it into a shared library is to share the
model between Desktop Effects and Virtual Desktops KCM.
The extracted model is quite the same as the one in Desktop Effects KCM,
except some minor changes, e.g. rename loadEffect and syncConfig to more
convenient names, add comments, some whitespace changes, fix coding
style in some parts, etc.
Test Plan: effectModelTest passes, Desktop Effects KCM works.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: hein, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17765
2018-12-22 10:50:28 +00:00
|
|
|
kcmkwincommon
|
2013-12-02 07:56:10 +00:00
|
|
|
)
|
2013-09-10 08:41:42 +00:00
|
|
|
|
2018-05-27 20:02:58 +00:00
|
|
|
if (BUILD_TESTING)
|
|
|
|
include(ECMMarkAsTest)
|
|
|
|
|
|
|
|
set(modelTest_SRC
|
|
|
|
model.cpp
|
|
|
|
effectconfig.cpp
|
|
|
|
compositing.cpp
|
|
|
|
test/effectmodeltest.cpp
|
|
|
|
test/modeltest.cpp)
|
|
|
|
|
|
|
|
qt5_add_dbus_interface(modelTest_SRC
|
|
|
|
${KWIN_SOURCE_DIR}/org.kde.kwin.Compositing.xml kwin_compositing_interface)
|
|
|
|
qt5_add_dbus_interface(modelTest_SRC
|
|
|
|
${KWIN_SOURCE_DIR}/org.kde.kwin.Effects.xml kwin_effects_interface)
|
|
|
|
|
|
|
|
add_executable(effectModelTest ${modelTest_SRC})
|
|
|
|
ecm_mark_as_test(effectModelTest)
|
|
|
|
|
|
|
|
target_link_libraries(effectModelTest
|
|
|
|
Qt5::Quick
|
|
|
|
Qt5::QuickWidgets
|
|
|
|
Qt5::DBus
|
|
|
|
Qt5::Test
|
|
|
|
Qt5::Widgets
|
|
|
|
KF5::CoreAddons
|
|
|
|
KF5::ConfigCore
|
|
|
|
KF5::Declarative
|
|
|
|
KF5::I18n
|
|
|
|
KF5::KCMUtils
|
|
|
|
KF5::NewStuff
|
|
|
|
kwineffects
|
[kcmkwin] Move effects model into a shared library
Summary:
The main motivation for moving it into a shared library is to share the
model between Desktop Effects and Virtual Desktops KCM.
The extracted model is quite the same as the one in Desktop Effects KCM,
except some minor changes, e.g. rename loadEffect and syncConfig to more
convenient names, add comments, some whitespace changes, fix coding
style in some parts, etc.
Test Plan: effectModelTest passes, Desktop Effects KCM works.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: hein, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17765
2018-12-22 10:50:28 +00:00
|
|
|
kcmkwincommon
|
2018-05-27 20:02:58 +00:00
|
|
|
)
|
|
|
|
endif()
|
2013-08-20 17:12:09 +00:00
|
|
|
|
2013-06-25 14:07:48 +00:00
|
|
|
INSTALL(DIRECTORY qml DESTINATION ${DATA_INSTALL_DIR}/kwincompositing)
|
2013-12-02 08:55:21 +00:00
|
|
|
INSTALL(TARGETS kwincompositing DESTINATION ${PLUGIN_INSTALL_DIR})
|
2014-03-07 09:09:47 +00:00
|
|
|
install(FILES kwincompositing.desktop kcmkwineffects.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
2014-01-12 19:27:10 +00:00
|
|
|
install(FILES kwineffect.knsrc DESTINATION ${CONFIG_INSTALL_DIR})
|
2013-06-25 14:07:48 +00:00
|
|
|
################# list the subdirectories #################
|