2023-02-11 18:14:50 +00:00
|
|
|
# SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
|
|
2023-11-13 07:05:38 +00:00
|
|
|
function(add_kwin_script name source)
|
|
|
|
|
kpackage_install_package(${source} ${name} scripts kwin)
|
2023-02-11 18:04:11 +00:00
|
|
|
|
|
|
|
|
# Copy the script to the build directory so one can run tests without prior
|
2023-11-13 07:05:38 +00:00
|
|
|
# make install.
|
|
|
|
|
file(COPY ${source}/contents ${source}/metadata.json DESTINATION ${CMAKE_BINARY_DIR}/bin/kwin/scripts/${name})
|
2023-02-11 18:04:11 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
2023-11-13 07:05:38 +00:00
|
|
|
add_kwin_script(convergentwindows convergentwindows)
|
2023-02-11 18:04:11 +00:00
|
|
|
|