where are the opengl libraries get stored on ubuntu9.10 : i need this to mention in my make file and what are all the link files i need to mention
|
You should not need to mention their location explicitly in your Like sisis wrote you should just need to add |
|||
|
|
|
They're part of |
|||||||||
|
|
Install these to get OpenGL working: sudo apt-get install mesa-common-dev sudo apt-get install freeglut3 sudo apt-get install freeglut3-dev The OpenGL files should be in: /usr/include/GL/ The Terminal (Compiler) reads (e.g. g++) from: /usr/bin/ Compile like this (you might need to link more libraries, but test this): g++ filename -lglut -lGL -lGLU |
|||
|
|
