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 - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -