From 6e39c1de5bb37f687cbf8b175e0aca5c342633e3 Mon Sep 17 00:00:00 2001 From: Harald Sitter Date: Tue, 31 Mar 2020 12:24:12 +0200 Subject: [PATCH] do not install testengine Summary: by default users have to opt out of BUILD_TESTING meaning everyone would by default build and get testengine installed even though it serves no purpose in production. this also includes distros as I've noticed :O do not install the engine, same as testplugin isn't getting installed. (I am actually thinking throwing it away as a whole may make sense; it serves no real purpose over any other engine) Reviewers: mart, apol Reviewed By: apol Subscribers: broulik, apol, kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D28463 --- tests/testengine/CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/testengine/CMakeLists.txt b/tests/testengine/CMakeLists.txt index e9b1270ec..7da0fdff2 100644 --- a/tests/testengine/CMakeLists.txt +++ b/tests/testengine/CMakeLists.txt @@ -8,6 +8,3 @@ kcoreaddons_desktop_to_json( target_link_libraries(plasma_engine_testengine KF5::KIOWidgets KF5::Plasma) - -install(TARGETS plasma_engine_testengine DESTINATION ${KDE_INSTALL_PLUGINDIR}) -install(FILES plasma-dataengine-testengine.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} )