print all fatal error of compilation to end of stdout

Hello,

I would like to have all fatal compilation errors at the end of the standard output or in a log file.
Also, is the standard output also redirected to a cmake log file? If you don’t forget to rewrite it manually, you risk losing the info.

Do you mean the errors from the build or the configure step? You should be able to split stdout and stderr then paste them together after the fact to put stderr at the end. But there’s nothing in CMake itself (or the build tools) that does that AFAIK.

ok thanks.

I am too demanding ^^