I am working on a cross-platform C ++ application for Windows, Mac OS X, and Linux. Development is done on Windows, and then gcc compatibility is tested on Mac OS X and Linux. On Windows, we use Visual Studio to compile, and on Linux and Mac OS X we use Makefiles.
Is there a way to filter compiler warnings for each project / module? Most projects have their own Makefile and then call qmake for subprojects. Is it their tool or profile method to collect compiler warnings and errors in such a scenario? Ideally, I would like to have html output with a brief description of the project and a detailed page for actual errors.
source
share