views:

103

answers:

1

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.

alt text

Brock Woolf
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
Glad you figured it out.
Brock Woolf