a738ecce85
Summary: If no conversion functions are provided for a QObject-subclass, then QScriptEngine will use QScriptEngine::newQObject() method without any special options to convert an instance of that QObject-subclass to a QScriptValue. However, it's very important that every client object is wrapped with PreferExistingWrapperObject option. We need that option because a script may set a property on a client object and that property must remain until it's deleted by the script. BUG: 413044 FIXED-IN: 5.17.2 Test Plan: New test. Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: davidedmundson, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D24944
12 lines
441 B
CMake
12 lines
441 B
CMake
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()
|
|
|
|
add_kwin_script(videowall)
|
|
add_kwin_script(synchronizeskipswitcher)
|
|
add_kwin_script(desktopchangeosd)
|
|
add_kwin_script(minimizeall)
|