I am building an application in C++, Mac OS X, Qt and using boost libraries. Every time I build a project I get a huge list of warnings only from boost libraries itself.
How to turn them off, so that I can see only my project specific warnings and errors?
Use
-isysteminstead of-Ito add Boost headers to include path. This option means to treat headers found there as system headers, and suppress warnings originating there.