Using OpenGL within QT, novice Linux user
Solved
3rd Party Software
-
Hi,
Do you really have to use Qt 3.3.8b ?
-
Ok...
You need to install the libglu development package if not already on your system.
-
My bad, I misread.
Did you try with
-lGLU
? -
Keep l lowercase, it's not the same signification for the linker.
-L
adds a folder to the search path of the linker while-l
is to add a library to link to. -
glClear is provided by the OpenGL library. You are missing
-lGL
.