summaryrefslogtreecommitdiffstats
path: root/cmake/QtPluginDependencies.cmake.in
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2020-09-11 13:55:13 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2020-09-12 19:26:55 +0200
commita3cb002511d7e2cc73234611795c1947620aedd5 (patch)
tree119cbdbc48a4694a817ee21bf4b799255fd3dd8f /cmake/QtPluginDependencies.cmake.in
parent58c1c6ee5c986d502b56eb1cc57f1d9444d42031 (diff)
CMake: Reduce the number of find_dependency calls
...in code. The actual number of calls at runtime does not change. The reason for this stunt is that we want to replace find_dependency with find_package at runtime for optional dependencies, and this will reduce the diff size of the next commit. Change-Id: I304fdf09c69fea7b6d4adabf515712eb097f8c86 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'cmake/QtPluginDependencies.cmake.in')
-rw-r--r--cmake/QtPluginDependencies.cmake.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/cmake/QtPluginDependencies.cmake.in b/cmake/QtPluginDependencies.cmake.in
index ce64b096bb..bae6d85c7b 100644
--- a/cmake/QtPluginDependencies.cmake.in
+++ b/cmake/QtPluginDependencies.cmake.in
@@ -11,13 +11,12 @@ foreach(_target_dep ${_third_party_deps})
if(version)
list(APPEND find_package_args "${version}")
endif()
-
if(components)
string(REPLACE " " ";" components "${components}")
- find_dependency(${find_package_args} COMPONENTS ${components})
- else()
- find_dependency(${find_package_args})
+ list(APPEND find_package_args COMPONENTS ${components})
endif()
+
+ find_dependency(${find_package_args})
endforeach()
# note: target_deps example: "Qt6Core\;5.12.0;Qt6Gui\;5.12.0"