CMake: Switch message type of the architecture extraction project
It should be STATUS instead of NOTICE, otherwise in a non-developer build where the default logging is quiet (log-level == NOTICE), the output might confuse builders that those flags are used for the build of Qt, rather than the architecture extraction project. Fixes: QTBUG-130294 Change-Id: If2ee50b47d46b00dc55c5423700749ab142bbf7c Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> (cherry picked from commit 674475887c6e4aeb82000e64657a69366cc9c7a4) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
76da2f74d4
commit
c596492348
@ -18,7 +18,7 @@ function(qt_run_config_test_architecture)
|
|||||||
message(STATUS
|
message(STATUS
|
||||||
"Building architecture extraction project with the following CMake arguments:")
|
"Building architecture extraction project with the following CMake arguments:")
|
||||||
list(POP_BACK CMAKE_MESSAGE_CONTEXT _context)
|
list(POP_BACK CMAKE_MESSAGE_CONTEXT _context)
|
||||||
message(NOTICE ${flags_indented})
|
message(STATUS ${flags_indented})
|
||||||
list(APPEND CMAKE_MESSAGE_CONTEXT ${_context})
|
list(APPEND CMAKE_MESSAGE_CONTEXT ${_context})
|
||||||
|
|
||||||
try_compile(
|
try_compile(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user