mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
048a02d5bb
Add configure log events for `try_compile` and `try_run` results. Issue: #23200
10 lines
231 B
C
10 lines
231 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
fprintf(stderr, "Output, with backslash '\\', on stderr!\n");
|
|
fflush(stderr); /* make output deterministic even if stderr is buffered */
|
|
fprintf(stdout, "Output on stdout!\n");
|
|
return 12;
|
|
}
|