@@ -29,7 +29,7 @@ include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/windows.cmake)
29
29
# Detect number of processors
30
30
include (ProcessorCount )
31
31
ProcessorCount (PROC_MAX )
32
- message ("Auto-detected ${PROC_MAX} CPU cores available for build parallelism." )
32
+ message (STATUS "Auto-detected ${PROC_MAX} CPU cores available for build parallelism." )
33
33
34
34
# List of known platforms
35
35
set (PLATFORM_LIST
@@ -197,15 +197,16 @@ function(godotcpp_generate)
197
197
another compiler simulating the Visual C++ cl command-line syntax. ]]
198
198
if (MSVC )
199
199
math (EXPR PROC_N "(${PROC_MAX} -1) | (${X} -2)>>31 & 1" )
200
- message ("Using ${PROC_N} cores for multi-threaded compilation." )
200
+ message (STATUS "Using ${PROC_N} cores for multi-threaded compilation." )
201
201
# TODO You can override it at configure time with ...." )
202
202
else ()
203
203
message (
204
+ STATUS
204
205
"Using ${CMAKE_BUILD_PARALLEL_LEVEL} cores, You can override"
205
206
" it at configure time by using -j <n> or --parallel <n> on the build"
206
207
" command."
207
208
)
208
- message (" eg. cmake --build . -j 7 ..." )
209
+ message (STATUS " eg. cmake --build . -j 7 ..." )
209
210
endif ()
210
211
211
212
#[[ GODOTCPP_SYMBOL_VISIBLITY
@@ -245,8 +246,8 @@ function(godotcpp_generate)
245
246
# Build Profile
246
247
if (GODOTCPP_BUILD_PROFILE )
247
248
message (STATUS "Using build profile to trim api file" )
248
- message ("\t BUILD_PROFILE = '${GODOTCPP_BUILD_PROFILE} '" )
249
- message ("\t API_SOURCE = '${GODOTCPP_GDEXTENSION_API_FILE} '" )
249
+ message (STATUS "\t BUILD_PROFILE = '${GODOTCPP_BUILD_PROFILE} '" )
250
+ message (STATUS "\t API_SOURCE = '${GODOTCPP_GDEXTENSION_API_FILE} '" )
250
251
build_profile_generate_trimmed_api (
251
252
"${GODOTCPP_BUILD_PROFILE} "
252
253
"${GODOTCPP_GDEXTENSION_API_FILE} "
0 commit comments