Turn off warnings coming from subprojects

后端 未结 3 1596
野性不改
野性不改 2021-02-05 04:46

Can someone help me to turn off warnings in Xcode 4 that I\'m getting from subprojects?

I have three subprojects, with a lot of warnings. The subprojects are provide by

3条回答
  •  无人及你
    2021-02-05 05:20

    If the library isn't too big, You could disable warnings on a per-file basis using

    #pragma GCC diagnostic ignored "-Wwarning-flag"
    

提交回复
热议问题