I have a project with several goals, each of which builds quite similar versions of the application, but with different image objects and plists. For plists / images that are fine, but I use ShareKit and Appirater frameworks that have C # defines header files to configure them. For each version, it seems to me, you need to import a different version of this header file, since for each application built by each goal, different settings.
So goal A has SHConfig.h and goal B has DIFFERENT SHConfig.h
I could edit the source for these frameworks to import different headers based on the target, but that would be dirty when I start updating the frameworks.
Is there a better way to import different header files (with the same name) based on the target?
source
share