qt5base-lts/cmake/QtPublicDependencyHelpers.cmake
Li Xinwei bd594f9457 CMake: Use namespaced variables in Qt6*Dependencies.cmake
Pick-to: 6.2 6.1
Change-Id: I166988020cfd9750a4d58e519742215d0c03ad3e
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
2021-07-24 03:51:53 +08:00

27 lines
1.1 KiB
CMake

# Please note the target_dep_list accepts not the actual list values but the list names that
# contain preformed dependencies. See foreach block for reference.
# The same applies for find_dependency_path_list.
macro(_qt_internal_find_dependencies target_dep_list find_dependency_path_list)
foreach(__qt_target_dep IN LISTS ${target_dep_list})
list(GET __qt_target_dep 0 __qt_pkg)
list(GET __qt_target_dep 1 __qt_version)
if (NOT ${__qt_pkg}_FOUND)
set(__qt_pkg_names ${__qt_pkg})
if(__qt_pkg MATCHES "(.*)Private$")
set(__qt_pkg_names "${CMAKE_MATCH_1};${__qt_pkg}")
endif()
find_dependency(${__qt_pkg} ${__qt_version}
NAMES
${__qt_pkg_names}
PATHS
${${find_dependency_path_list}}
${_qt_additional_packages_prefix_path}
${_qt_additional_packages_prefix_path_env}
${QT_EXAMPLES_CMAKE_PREFIX_PATH}
${__qt_use_no_default_path_for_qt_packages}
)
endif()
endforeach()
endmacro()