From 7cda805338dc05ca2c0e71cff6316f589b55b657 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. Change-Id: I643536c4ebc865933730b7af2a1d0c56bbbf2912 Reviewed-by: Amir Masoud Abdol Reviewed-by: Alexey Edelev (cherry picked from commit 4a4c3296870ef5fbeefddd1022a0eefa8bb6f5e8) Reviewed-by: Qt Cherry-pick Bot --- cmake/QtBuildInternals/QtBuildInternalsConfig.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake b/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake index 9d8df960d23..5246d67c37b 100644 --- a/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake +++ b/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake @@ -604,6 +604,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()