From 4a4c3296870ef5fbeefddd1022a0eefa8bb6f5e8 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Mon, 6 Feb 2023 17:02:13 +0100 Subject: [PATCH] CMake: Show a message when configuring examples This somewhat indicates the progress of configuring a specific repo and the slower period of time when configuring examples in-tree. Pick-to: 6.5 Change-Id: I643536c4ebc865933730b7af2a1d0c56bbbf2912 Reviewed-by: Amir Masoud Abdol Reviewed-by: Alexey Edelev --- cmake/QtBuildInternals/QtBuildInternalsConfig.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake b/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake index 6214b3c3896..7d9fbcc3921 100644 --- a/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake +++ b/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake @@ -624,6 +624,7 @@ macro(qt_build_repo_impl_examples) if(QT_BUILD_EXAMPLES AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/examples/CMakeLists.txt" AND NOT QT_BUILD_STANDALONE_TESTS) + message(STATUS "Configuring examples.") add_subdirectory(examples) endif() endmacro()