You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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()
|