8dd0a8163f
Following features are supported: * finds all plugins ** finds all themes for a theme-engine plugin * renders previews for the plugin/themes * loads currently used plugin/theme * saves selected plugin/theme * triggers config reload in KWin Following features are currently not supported: * Search * Plugin configuration * GHNS * Button configuration
20 lines
584 B
CMake
20 lines
584 B
CMake
set(plugin_SRCS
|
|
previewbridge.cpp
|
|
previewclient.cpp
|
|
previewitem.cpp
|
|
previewsettings.cpp
|
|
plugin.cpp
|
|
)
|
|
|
|
add_library(kdecorationprivatedeclarative SHARED ${plugin_SRCS})
|
|
target_link_libraries(kdecorationprivatedeclarative
|
|
KDecoration2::KDecoration
|
|
KDecoration2::KDecoration2Private
|
|
Qt5::Quick
|
|
KF5::CoreAddons
|
|
KF5::ConfigWidgets
|
|
KF5::Service
|
|
)
|
|
|
|
install(TARGETS kdecorationprivatedeclarative DESTINATION ${QML_INSTALL_DIR}/org/kde/kwin/private/kdecoration )
|
|
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/kwin/private/kdecoration )
|