summaryrefslogtreecommitdiffstats
path: root/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2023-02-06 17:02:13 +0100
committerAlexandru Croitor <alexandru.croitor@qt.io>2023-02-07 18:27:11 +0100
commit4a4c3296870ef5fbeefddd1022a0eefa8bb6f5e8 (patch)
treec1ca3e22920da3ad863d914e87dae9be4bcd6b3e /cmake/QtBuildInternals/QtBuildInternalsConfig.cmake
parent285c326ef4070b768f7a6ef7a38fb2c2976fe572 (diff)
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 <amir.abdol@qt.io> Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Diffstat (limited to 'cmake/QtBuildInternals/QtBuildInternalsConfig.cmake')
-rw-r--r--cmake/QtBuildInternals/QtBuildInternalsConfig.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake b/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake
index 6214b3c389..7d9fbcc392 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()