I have done the following so far:
- Created workspace
- Added my project
- Added the Cocos2d iOS project (by dragging dropping into project navigator). It is a sibling of my project (not child).
- In my project, in build phase, linked to libcocos2d.a
- In build settings of my project - Set Always search paths to YES
- Created source tree variable pointing to folder containing cocos2d iOS xcodeproj file.
- In user header paths of my project, added source tree variable from step 6. Set as recursive. 8.In project navigator, clicked on libcocos2d.a library (it appears red). Set location "Relative to build products" You set this in the right most window in Xcode 4.3.1.
- Closed workspace, and opened pbxproj file in TextWrangler. Searched for path containing libcocos2d.a Remove path, so the entry only reads "libcocos2d.a" . This is because after compiling the library is in the same build directory of the app anyway.
Codesense and autocomplete work. But this will not compile. Around 70 linker errors pop up when I try to build, all saying something like:
Undefined symbols for architecture armv7: "_OBJC_CLASS_$_CCDirector", referenced from: objc-class-ref in AppDelegate.o objc-class-ref in ViewController.o "_kEAGLColorFormatRGB565", referenced from: -[RIAppDelegate applicationDidFinishLaunching:] in AppDelegate.o "_OBJC_CLASS_$_CCTexture2D", referenced from: objc-class-ref in AppDelegate.o "_OBJC_CLASS_$_EAGLView", referenced from: objc-class-ref in AppDelegate.o
If I try to build for the simulator, then instead of armv7, it says the symbols are missing for i386. The cocos2d project by itself compiles & builds fine. It is my project which has the above errors.
The cocos2d library is present in the build directory of my app after I try to build.
EDIT: Forgot to mention. I also edited the scheme for my project to not build in parallel. I also added the cocos2d target, and made it the top of the list (so it should build first).
EDIT: To clarify - after making the changes to the pbxproj file as detailed above, the libcocos2d.a file is no longer red. It looks normal. Also my app is also built, even though there are the link errors and the build fails. (It doesn't actually build, but the product is not "red". An app file is created in the same location as where the cocos2d library is produced.