Cocoapods specify podspec xcconfig value for Debug only
I am using cocoapods and want to specify a value in the pod's podspec using the xcconfig parameter that would be specific to Debug mode. currently, using : s.xcconfig = { "GCC_PREPROCESSOR_DEFINITIONS" => "MY_DEFINE=1" } will set the value for both Debug and Release modes. Also tried using : s.xcconfig = { "GCC_PREPROCESSOR_DEFINITIONS[config=Debug]" => "MY_DEFINE=1" } but, altho this sets it in the pod's preprocessor macros, it doesn't seem to register during execution of the code, unlike when not using the [config=Debug] tag. Is there a way to limit it to Debug mode only? brunobowden You