mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-27 03:08:35 -06:00
Merge topic 'message-color' into release-3.21
c7a8c9c811 cmMessenger: Revert to non-color messages on Windows
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6369
This commit is contained in:
@@ -153,9 +153,20 @@ std::string cmakemainGetStack(cmake* cm)
|
||||
void cmakemainMessageCallback(const std::string& m,
|
||||
const cmMessageMetadata& md, cmake* cm)
|
||||
{
|
||||
#if defined(_WIN32)
|
||||
// FIXME: On Windows we replace cerr's streambuf with a custom
|
||||
// implementation that converts our internal UTF-8 encoding to the
|
||||
// console's encoding. It also does *not* replace LF with CRLF.
|
||||
// Since stderr does not convert encoding and does convert LF, we
|
||||
// cannot use it to print messages. Another implementation will
|
||||
// be needed to print colored messages on Windows.
|
||||
static_cast<void>(md);
|
||||
std::cerr << m << cmakemainGetStack(cm) << "\n";
|
||||
#else
|
||||
cmsysTerminal_cfprintf(md.desiredColor, stderr, "%s", m.c_str());
|
||||
fflush(stderr); // stderr is buffered in some cases.
|
||||
std::cerr << cmakemainGetStack(cm) << "\n";
|
||||
#endif
|
||||
}
|
||||
|
||||
void cmakemainProgressCallback(const std::string& m, float prog, cmake* cm)
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
include(RunCMake)
|
||||
|
||||
run_cmake_script(newline)
|
||||
|
||||
run_cmake(defaultmessage)
|
||||
run_cmake(nomessage)
|
||||
run_cmake(message-internal-warning)
|
||||
|
||||
2
Tests/RunCMake/message/newline-script.cmake
Normal file
2
Tests/RunCMake/message/newline-script.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
message(STATUS "one\ntwo")
|
||||
message("one\ntwo")
|
||||
2
Tests/RunCMake/message/newline-stdout.txt
Normal file
2
Tests/RunCMake/message/newline-stdout.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
-- out='2d2d206f6e650a74776f0a'
|
||||
-- err='6f6e650a74776f0a'
|
||||
9
Tests/RunCMake/message/newline.cmake
Normal file
9
Tests/RunCMake/message/newline.cmake
Normal file
@@ -0,0 +1,9 @@
|
||||
execute_process(
|
||||
COMMAND "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_LIST_DIR}/newline-script.cmake"
|
||||
OUTPUT_FILE newline-script-stdout.txt
|
||||
ERROR_FILE newline-script-stderr.txt
|
||||
)
|
||||
foreach(f out err)
|
||||
file(READ newline-script-std${f}.txt hex HEX)
|
||||
message(STATUS "${f}='${hex}'")
|
||||
endforeach()
|
||||
Reference in New Issue
Block a user