How to append values in xcconfig variables?

前端 未结 8 742
借酒劲吻你
借酒劲吻你 2020-12-12 21:58

I\'m using Xcode and .xcconfig files. I\'m trying to append some values in the preprocessor definitions, but I simply can\'t make it work.

I tried the following (as

8条回答
  •  孤城傲影
    2020-12-12 22:30

    You want to use the placeholder $(inherited) to represent the value inherited from lower levels, e.g.

    GCC_PREPROCESSOR_DEFINITIONS = "$(inherited) NEW_VALUE"
    

提交回复
热议问题