I have a Debug.xcconfig file:
I have a AppUAT.Debug.xcconfig file that includes the above file and tries to use inheritance to only add a new value:
Build Settings will only show:
Active Compilation Conditions == " UAT"
I put the quotes there to show $(inherited) is nil and the space is literally carried over from the space after $(inherited).
What am I doing wrong?
Code Block Swift SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG
I have a AppUAT.Debug.xcconfig file that includes the above file and tries to use inheritance to only add a new value:
Code Block swift #include "Debug.xcconfig" SWIFT_ACTIVE_COMPILATION_CONDITIONS = $(inherited) UAT
Build Settings will only show:
Active Compilation Conditions == " UAT"
I put the quotes there to show $(inherited) is nil and the space is literally carried over from the space after $(inherited).
What am I doing wrong?