blob: d51589c84b4760e985bc98d31c09143947f5616f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if(CMP0176 STREQUAL "NEW")
cmake_policy(SET CMP0176 NEW)
endif()
# Set the console code page.
execute_process(COMMAND cmd /c chcp ${CODEPAGE})
include(${CMAKE_CURRENT_LIST_DIR}/Encoding-common.cmake)
# Save our internal UTF-8 representation of the output.
file(WRITE "out.txt" "${out}")
|