You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
670 B
14 lines
670 B
function(add_kwin_script name) |
|
kpackage_install_package(${name} ${name} scripts kwin) |
|
|
|
# Copy the script to the build directory so one can run tests without prior |
|
# make install. FIXME: use add_custom_command. |
|
file(COPY ${name} DESTINATION ${CMAKE_BINARY_DIR}/bin/kwin/scripts/) |
|
endfunction() |
|
|
|
# videowall defines a KCModule service that has to be separately installed for the config dialog to be accessible |
|
install(FILES videowall/metadata.desktop DESTINATION ${SERVICES_INSTALL_DIR} RENAME kwin-script-videowall.desktop) |
|
add_kwin_script(videowall) |
|
add_kwin_script(synchronizeskipswitcher) |
|
add_kwin_script(desktopchangeosd) |
|
add_kwin_script(minimizeall)
|
|
|