f65bb82f36
Use the KWSys Process "MergeOutput" option to give the child process the same pipe (or file) for both stdout and stderr. This allows natural merging of stdout and stderr together instead of merging on arbitrary buffered read boundaries as before.
7 lines
156 B
CMake
7 lines
156 B
CMake
execute_process(
|
|
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_LIST_DIR}/MergeOutput.cmake
|
|
OUTPUT_VARIABLE out
|
|
ERROR_VARIABLE out
|
|
)
|
|
message("${out}")
|