I include firebase to my pod, inside FirebaseCore.xcconfig there is
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=5.4.1 Firebase_VERSION=5.20.0
because above code is never execute, it will always fail to compile since FirVersion.m will always blocks it from compiling.
Wondering if anyone can help me on this? I want to execute above code or FirebaseCore.xcconfig file
You can add these pre-processor definitions as compiler flags using the
-Doption.See more information about -D option
So in this case you would add extra arguments in your rule e.g.
Or something like that