summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <[email protected]>2024-10-21 11:32:41 +0200
committerAlexandru Croitor <[email protected]>2024-10-21 16:03:56 +0200
commitc0e07cc3e2817d158d05e69e1254471ff6b074e1 (patch)
tree8f5ee070b1f288512286dfcce0ea8d929f782ed1
parente4f2d4275eb03bae6b4d0d8a1a6a009a7f42eb81 (diff)
CMake: Fix linking of qtsvg static plugins in standalone tests build
Our QtPluginConfig.cmake.in files have code to skip loading plugins unless the repo is found in the QT_REPO_DEPENDENCIES variable or when building standalone parts. The problem is that QT_INTERNAL_BUILD_STANDALONE_PARTS is only assigned a value after all the find_package calls have executed, which is too late for the qtsvg standalone tests, because the svg icon config file would already be loaded and skipped. This code path checked for QT_BUILD_STANDALONE_TESTS, before the introduction of the QT_INTERNAL_BUILD_STANDALONE_PARTS variable. QT_BUILD_STANDALONE_TESTS is set by the qt-internal-configure-tests script, so it is always available. Restore the previous check for QT_BUILD_STANDALONE_TESTS, while keeping the new variable as well. This fixes the tst_qicon_svg test to pass in a static standalone tests build. Amends 62905163bf887c2c2c9ba7edcd64c96d237a6e95 Restores behavior of be1ee03a0fafa28efa0c0e45f21f9dc684625957 Pick-to: 6.8 Task-number: QTBUG-90820 Task-number: QTBUG-96232 Change-Id: I19f620a39fe530bf7f96498cfad1c90621983eb6 Reviewed-by: Alexey Edelev <[email protected]> Reviewed-by: Toni Saario <[email protected]>
-rw-r--r--cmake/QtPluginConfig.cmake.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/QtPluginConfig.cmake.in b/cmake/QtPluginConfig.cmake.in
index c70bf2f2fb2..09ed400ef6c 100644
--- a/cmake/QtPluginConfig.cmake.in
+++ b/cmake/QtPluginConfig.cmake.in
@@ -3,7 +3,9 @@
include_guard(DIRECTORY)
-if(DEFINED QT_REPO_DEPENDENCIES AND NOT QT_INTERNAL_BUILD_STANDALONE_PARTS)
+if(DEFINED QT_REPO_DEPENDENCIES
+ AND NOT QT_INTERNAL_BUILD_STANDALONE_PARTS
+ AND NOT QT_BUILD_STANDALONE_TESTS)
# We're building a Qt repository.
# Skip this plugin if it has not been provided by one of this repo's dependencies.
string(TOLOWER "@PROJECT_NAME@" lower_case_project_name)