When building my project I'm now getting the error (but the build succeeds and runs):
/Users/xxx/yyy/zzz-xcode-4.6.3p1/Classes/main.mm:28:6: Use of undeclared identifier 'UnityParseCommandLine'
In this code snippet from main.mm:
Any ideas?
/Users/xxx/yyy/zzz-xcode-4.6.3p1/Classes/main.mm:28:6: Use of undeclared identifier 'UnityParseCommandLine'
In this code snippet from main.mm:
Code (csharp):
- {
- NSAutoreleasePool* pool = [NSAutoreleasePool new];
- UnityInitTrampoline();
- if(!UnityParseCommandLine(argc, argv))
- return -1;
- .
- .
- .
- }