From 0393017610a23bfb64ce469f71e98d30795137e2 Mon Sep 17 00:00:00 2001 From: Alexey Edelev Date: Thu, 19 Nov 2020 12:19:39 +0100 Subject: [PATCH] CMake: Fix fuzzer-no-link check for super builds Add platform detection before report enties evaluation in root CMakeLists.txt. QtPlatformSupport.cmake defines required platform-specific variables line CLANG before qt_configure_eval_commands call. Fixes: QTBUG-88496 Change-Id: I13afdbe29f2bffeb2c36c17e231b98b2aa2b41e6 Reviewed-by: Alexandru Croitor Reviewed-by: Andreas Buhr --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 92970aa9..8ebf5608 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,6 +83,7 @@ endforeach() if(NOT QT_BUILD_STANDALONE_TESTS) # Display a summary of everything include(QtBuildInformation) + include(QtPlatformSupport) qt_print_feature_summary() qt_print_build_instructions() endif()