how do I include a single -swift.h in a file shared by multiple targets in xcode?
I want to include "PROJECTNAME-Swift.h" once rather than have a sea of
#if SOMETHING_SPECIFIC_FOR_TARGET_1
#import "Target1-Swift.h"
#elsif SOMETHING_SPECIFIC_FOR_TARGET_2
#import "Target2-Swift.h"
...