I'm attempting to write a program and I keep getting this error:
Fatal error: gl/glut.h: no such file or directory
I've read through other similar problems that people were having, and nothing has worked for me. What can I do to solve this problem?
On Ubuntu 13.10 this file is available in the
freeglut3-dev
package.You must also be aware that C++ and Ubuntu are both case-sensitive. The correct include line in your program is:
The upper-case "GL" is important.
On a Debian based system, do