I want to write a simple SDL OpenGL app, Codeblocks is the IDE I use. When I create a new OpenGL project, it compiles fine, but if I try to use a function from the SDL header, le wild "undefined reference error" occurs. The same goes for the other direction, if I create a new SDL project, I can use the SDL functions without problems but I get a "undefined reference error" for the OpenGL functions...
NOTES:
- I Use Ubuntu 11.10
- I have installed the SDL and the OpenGL packages
-l, -L, and -Iflags from one project to another. Somewhere in the OpenGL project settings you'll likely find something like this "-lglut -lGL -lGLU". The-lflag indicates what libraries to link against. The-Ladds directories to the search path for those libraries.-Iadds directories to where the compiler searches for included headers, but it sounds like that's not your problem. – Brian McFarland Feb 22 '12 at 21:15