1c61e61119
Summary: KWin was quite good in ensuring that you don't need to install by passing paths to the tests. The new way is much nicer, so code is adjusted for the new way. Also if we require a newer ECM in future we need to support the new way. No guarantee that the tests don't pick something up from the system env, that needs more testing. References: https://community.kde.org/Guidelines_and_HOWTOs/Making_apps_run_uninstalled Test Plan: The tests which loaded helpers pass Reviewers: #kwin, #plasma Subscribers: plasma-devel, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D7543
15 lines
419 B
CMake
15 lines
419 B
CMake
set(SCENE_QPAINTER_SRCS scene_qpainter.cpp)
|
|
|
|
add_library(KWinSceneQPainter MODULE scene_qpainter.cpp)
|
|
set_target_properties(KWinSceneQPainter PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/org.kde.kwin.scenes/")
|
|
target_link_libraries(KWinSceneQPainter
|
|
kwin
|
|
SceneQPainterBackend
|
|
)
|
|
|
|
install(
|
|
TARGETS
|
|
KWinSceneQPainter
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/org.kde.kwin.scenes/
|
|
)
|