aaaca19b0e
Summary: The "new" animation option no longer uses hard coded effects, which means one could install a third party virtual desktop switching animation, for example from store.kde.org, and it will be displayed in the KCM. Test Plan: {F6503565} Reviewers: #kwin, #vdg, ngraham, davidedmundson Reviewed By: #kwin, #vdg, ngraham, davidedmundson Subscribers: davidedmundson, hein, ngraham, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D17766
34 lines
981 B
CMake
34 lines
981 B
CMake
include(ECMQMLModules)
|
|
ecm_find_qmlmodule(org.kde.plasma.core 2.0)
|
|
|
|
# KI18N Translation Domain for this library.
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kcm_kwin_virtualdesktops\")
|
|
|
|
########### next target ###############
|
|
|
|
set(kcm_kwin_virtualdesktops_PART_SRCS
|
|
virtualdesktops.cpp
|
|
animationsmodel.cpp
|
|
desktopsmodel.cpp
|
|
../../virtualdesktopsdbustypes.cpp
|
|
)
|
|
|
|
add_library(kcm_kwin_virtualdesktops MODULE ${kcm_kwin_virtualdesktops_PART_SRCS})
|
|
|
|
target_link_libraries(kcm_kwin_virtualdesktops
|
|
Qt5::DBus
|
|
KF5::I18n
|
|
KF5::KCMUtils
|
|
KF5::QuickAddons
|
|
KF5::XmlGui
|
|
kcmkwincommon
|
|
)
|
|
|
|
kcoreaddons_desktop_to_json(kcm_kwin_virtualdesktops "kcm_kwin_virtualdesktops.desktop")
|
|
|
|
########### install files ###############
|
|
|
|
install(TARGETS kcm_kwin_virtualdesktops DESTINATION ${KDE_INSTALL_PLUGINDIR}/kcms)
|
|
install(FILES kcm_kwin_virtualdesktops.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR})
|
|
kpackage_install_package(package kcm_kwin_virtualdesktops kcms)
|
|
|