c++ - how to request cmake to be not verbose? -
every time launch make
(generated cmake
), each build steps introduced multiple lines formated way:
[100%] built target foobar linking cxx executable ../../bin/foobar make[2]: quittant le rĂ©pertoire « /home/me/git/master/build/debug »
that goes 0% 100%. everytime launch make, outputs lot of lines. lot. that's verbose , warnings lost in process.
how can ask cmake
remove that, , generate makefile
s make
output compiler output.
just do:
make > /dev/null
you still compiler error messages printed out since go stderr.
Comments
Post a Comment