#import <CorePlot/CorePlot.h>
I get 'CorePlot/CorePlot.h' file not found. If I change it to #import </CorePlot.h> then the #import <CorePlot/CPTDecimalNumberValueTransformer.h> line in CorePlot.h shown below can't be found below. I'm sure this isn't the way to do this.
#import "TargetConditionals.h"
#if TARGET_OS_SIMULATOR || TARGET_OS_IPHONE
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#else
#import <Cocoa/Cocoa.h>
#import <CorePlot/CPTDecimalNumberValueTransformer.h>
#endif
#import <CorePlot/CPTAnimation.h>
#import <CorePlot/CPTAnimationOperation.h>
#import <CorePlot/CPTAnimationPeriod.h>
#import <CorePlot/CPTAnnotation.h>
....
My app 'Sunrize' had 'Development', Deployment' and 'Default' probably from an old version of Xcode. So with no common configuration Xcode would not find the CorePlot.h during the build and give no clue as to what was going on.