SenTestingKit Framework Linking problems with Cocoa classes on iPhone
Really hoping that someone can help me here as it's driving me mad...
Using the SenTestingKit stuff in iPhone OS 3.1.2, and have got the logic testing stuff all running okay, until I try to include some of my classes which use CLLocation, CLLocationManager etc - then it fails to link, complaining about the following:
".objc class_nameCLLocationManager", referenced from: literal-pointer@__OBJC@....etc
symbol(s) not found
collect2: ld returned 1 exit status
and the same issue for the following:
".objc class_nameCLLocation", referenced from: literal-pointer@__OBJC@...etc
symbol(s) not found
collect2: ld returned 1 exit status
So, I have included all of my own source files in the LogicTest target in my xcode project, which uses other classes such as NSMutableArray etc, and all build okay apart from these 2 errors - do i need to include something somewhere?!
CoreLocation framwork is included in the project already, as the main application works fine normally - only seeing this when i am trying to build the logic test target...
Please help!!