How to disable warnings for static structure in Xcode?

I want to create an Xcode project with -Weverything. Unfortunately, my project uses opencv2.framework (built as a static environment for iOS), and the header files for this structure are not -Weverythingclean.

When using clang from the command line, I can use a flag -isystemto specify system header files that should be ignored for compiler warnings. Is there a similar feature for frameworks? And if so, how do I access it from Xcode?

+5
source share

All Articles