support/misc/toolchainfile.cmake.in: add definitions needed by Qt6

When compiling Qt6 applications for the target, CMake needs to have
two variables defined to find the host installation of Qt. These two
variables are unconditionally defined, regardless of whether Qt6 is
enabled in the configuration or not, as they do no harm when Qt6 is
not present/used.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022.08.x
Thomas Petazzoni 2022-07-25 17:25:21 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 9522dde070
commit b4cb2d3ebc
1 changed files with 9 additions and 0 deletions

View File

@ -125,3 +125,12 @@ if(@@TOOLCHAIN_HAS_FORTRAN@@)
set(CMAKE_Fortran_COMPILER "${RELOCATED_HOST_DIR}/@@TARGET_FC@@")
endif()
endif()
# For Qt6
if(NOT DEFINED QT_HOST_PATH)
set(QT_HOST_PATH "${RELOCATED_HOST_DIR}")
endif()
if(NOT DEFINED QT_HOST_PATH_CMAKE_DIR)
set(QT_HOST_PATH_CMAKE_DIR "${RELOCATED_HOST_DIR}/lib/cmake")
endif()