blob: 97afba479c5c25dafebb3690a3c6adbaa40fb892 (
plain)
1
2
3
4
5
6
7
8
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()
|