I have a third-party structure that I imported into my project, and this leads to the fact that compiler warnings appear due to problems in its header files. I do not want to change third-party code, as it is likely to change in the near future. I found this post:
Disable warnings in Xcode from frameworks
This article talks about how to disable warnings for each file or for each project, but I'm not sure how to do this for the platform. This is because the files technically exist, but Xcode does not show them in the compiled sources section.
Does anyone know how to ignore compiler warnings for an included structure?
source share