diff options
author | Dāvis Mosāns <davispuh@gmail.com> | 2016-11-14 02:05:08 (GMT) |
---|---|---|
committer | Dāvis Mosāns <davispuh@gmail.com> | 2016-11-29 22:38:48 (GMT) |
commit | 076aef8e45a91e83f9a7d879712fd70778d67c92 (patch) | |
tree | d9a22fd4cac33ecea83dca50447358e9fe931f81 /Source/ctest.cxx | |
parent | 44c978a2dab96b44ed2dd7470f532c4aa4c7da7c (diff) | |
download | CMake-076aef8e45a91e83f9a7d879712fd70778d67c92.zip CMake-076aef8e45a91e83f9a7d879712fd70778d67c92.tar.gz CMake-076aef8e45a91e83f9a7d879712fd70778d67c92.tar.bz2 |
Windows: Use UTF-8 for pipes in CMake, CTest and CPack
Applications which process CMake output will need to decode it as UTF-8
instead of console's codepage.
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index 1acd240..1cf75c8 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -116,7 +116,9 @@ int main(int argc, char const* const* argv) #if defined(_WIN32) && defined(CMAKE_BUILD_WITH_CMAKE) // Replace streambuf so we can output Unicode to console cmsys::ConsoleBuf::Manager consoleOut(std::cout); + consoleOut.SetUTF8Pipes(); cmsys::ConsoleBuf::Manager consoleErr(std::cerr, true); + consoleErr.SetUTF8Pipes(); #endif cmsys::Encoding::CommandLineArguments encoding_args = cmsys::Encoding::CommandLineArguments::Main(argc, argv); |