We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 78c9c0f + 53a1500 commit 0fc99c9Copy full SHA for 0fc99c9
1 file changed
cmake/BuildTelemetryConfig.cmake
@@ -4,15 +4,15 @@ set(BUILD_TELEMETRY_DIR ${CMAKE_CURRENT_LIST_DIR})
4
5
function(configure_build_telemetry)
6
if(NOT BUILD_TELEMETRY_CONFIGURATION)
7
- message(STATUS "Configuring Build Telemetry")
8
-
9
# Check if the CMake version is at least 4.3
10
if(CMAKE_VERSION VERSION_LESS "4.3")
11
message(
12
- WARNING
+ STATUS
13
"CMake version is less than 4.3, configuring cmake_instrumentation is unavailable."
14
)
15
return()
+ else()
+ message(STATUS "Configuring Build Telemetry")
16
endif()
17
18
# Telemetry query
@@ -25,7 +25,7 @@ function(configure_build_telemetry)
25
CALLBACK ${BUILD_TELEMETRY_DIR}/telemetry.sh
26
27
28
+ DEBUG
29
"using callback script ${BUILD_TELEMETRY_DIR}/telemetry.sh"
30
31
0 commit comments