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 makefiles make output compiler output.

just do:

make > /dev/null 

you still compiler error messages printed out since go stderr.


Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -