I have code that says (literally):
#define BUILD_PLATFORM ios
#if BUILD_PLATFORM==macos
#import <AppKit/AppKit.h>
#elif BUILD_PLATFORM==ios
#import <UIKit/UIKit.h>
#endif
However when I attempt to build the project, it still tries to import AppKit/AppKit.h, giving an error that the header cannot be found.
What am I doing wrong?