From bd46f7a5adf1c6c693f54ad225d3aa4557551013 Mon Sep 17 00:00:00 2001 From: Amir Masoud Abdol Date: Tue, 11 Jul 2023 13:58:42 +0200 Subject: [PATCH] Detect vcpkg after everything else In order to use multiple toolchain, e.g., when we are cross compiling, we need to load the detect, and load vcpkg's toolchain after our toolchain file. Change-Id: I7f3374363f725a634356788e22ac21835505c4b0 Reviewed-by: Alexandru Croitor (cherry picked from commit 044cc7c90b80f5696656565aa6ae4de2b3b09822) Reviewed-by: Amir Masoud Abdol --- cmake/QtAutoDetect.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/QtAutoDetect.cmake b/cmake/QtAutoDetect.cmake index cbfd5826db4..d98ff3925ae 100644 --- a/cmake/QtAutoDetect.cmake +++ b/cmake/QtAutoDetect.cmake @@ -508,10 +508,10 @@ qt_auto_detect_darwin() qt_auto_detect_macos_universal() qt_auto_detect_ios() qt_auto_detect_android() -qt_auto_detect_vcpkg() qt_auto_detect_pch() qt_auto_detect_wasm() qt_auto_detect_win32_arm() qt_auto_detect_linux_x86() qt_auto_detect_integrity() qt_auto_detect_cmake_build_type() +qt_auto_detect_vcpkg()