I am trying to study OpenGL and I have the framework added, but I am getting linker errors. I believe the issue is adding the library to the project for linking and EVERY time I try to add a library, I hunt around for the configuration setting forever. Someone, please give me the simple click-n-go answer!
+1
A:
The linker cannot find the CAEAGLLayer framework to link against.
Add the QuartzCore.framework
and the linker will be able to find the missing framework.
To do this right-click on the Frameworks the choose: Add > Existing Frameworks > QuartzCore.framework.
Brock Woolf
2009-12-05 21:38:00
Thanks Brock - that is what I needed :) I did find the list of libraries, but that is too indirect since the choices don't have names that one can be certain are related to the imported header files. When I used your suggestion, that takes care of 'both' sides.
mobibob
2009-12-09 03:50:05
Glad you figured it out.
Brock Woolf
2009-12-09 09:30:54