Is there a way to exclude compiler warnings for 3rd party libraries, i.e. Qt and other external libraries ("external" in this context means "not my source code").
I do not want to disable a certain warning type (I know how to do so), but only see warnings for my code.
In an answer here I have found an approach to surround external libs by #pragma
, only I need a gcc and vc++ compliant solution. Are there any better alternatives for Qt Creator?