diff options
author | Eike Ziller <eike.ziller@qt.io> | 2019-05-21 12:22:35 +0200 |
---|---|---|
committer | Eike Ziller <eike.ziller@qt.io> | 2019-05-23 11:13:21 +0000 |
commit | 6fb9bf453f6f67af42649034af4ec5745e12d901 (patch) | |
tree | e848c277b7c2dac30fa0254051994e7c121ea5c3 /src/plugins/perfprofiler | |
parent | 9645687e539bd0ea286fb4136329458c3db3694e (diff) | |
download | qt-creator-6fb9bf453f6f67af42649034af4ec5745e12d901.tar.gz |
CMake build: Add ability to disable building of individual plugins
Adds a cache entry "BUILD_PLUGIN_${NAME}", defaulting to ON which
can be set to OFF to disable building of a plugin.
Adds a extend_qtc_plugin function that should be used to add
properties to a plugin after add_qtc_plugin, instead of the
standard CMake functions target_... . The new function results
in a no-op if the plugin was disabled.
Change-Id: I57f6799620aea0aaa8b56acead4815ccced95911
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/perfprofiler')
-rw-r--r-- | src/plugins/perfprofiler/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/perfprofiler/CMakeLists.txt b/src/plugins/perfprofiler/CMakeLists.txt index 18f0137110..20345cb038 100644 --- a/src/plugins/perfprofiler/CMakeLists.txt +++ b/src/plugins/perfprofiler/CMakeLists.txt @@ -32,10 +32,10 @@ add_qtc_plugin(PerfProfiler perftracepointdialog.cpp perftracepointdialog.h perftracepointdialog.ui ) -if (WITH_TESTS) - target_sources(PerfProfiler PRIVATE +extend_qtc_plugin(PerfProfiler + CONDITION WITH_TESTS + SOURCES tests/perfprofilertracefile_test.cpp tests/perfprofilertracefile_test.h tests/perfresourcecounter_test.cpp tests/perfresourcecounter_test.h tests/tests.qrc - ) -endif() +) |