aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristian Adam <cristian.adam@gmail.com>2021-02-26 16:24:47 +0100
committerTim Jenssen <tim.jenssen@qt.io>2021-02-26 16:25:06 +0000
commit90b59f4cdaadbb145b1fd19f5423d54b9e01d1eb (patch)
tree935b5f630c71df0b68245ee3ec775ff9655ad171
parent6c639303d61f2138df527a688253f31beb90cc52 (diff)
telemetry: Make sure to depend on the QtCreator dependencies
The plugin is being built using ExternalProject_Add, which means that it will use QtCreator targets from the exported QtCreator build. The trigger of the build is done from a super build including QtCreator. Adding the QtCreator dependencies makes sure that the binaries referenced from the exported build are first created. Change-Id: I0bc4ea85170bf4beed869ef2205828e7fbc9b1a8 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d8f7adc..69f4ce8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -61,6 +61,6 @@ ExternalProject_Add(plugin
-DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}
-DQtCreator_BINARY_DIR:PATH=${QtCreator_BINARY_DIR}
-DQTC_MERGE_BINARY_DIR:BOOL=${QTC_MERGE_BINARY_DIR}
- DEPENDS kuserfeedback
+ DEPENDS kuserfeedback QtCreator::Core QtCreator::Debugger QtCreator::ProjectExplorer QtCreator::QtSupport
BUILD_ALWAYS ON
)