cmake 3.21.0 output mixes LF and CRLF newlines
On Windows, create a `msg.cmake` script containing:
```cmake
message("one\ntwo")
```
Run it as `cmake -P msg.cmake`.
With CMake 3.20 and lower, the output on `stderr` is `one\ntwo\n`. With CMake 3.21.0, the output on `stderr` is `one\r\ntwo\n`.
issue