> (sorry its an image but you cant copy and paste from the build log)
Right click -> copy contents to clipboard
Also, what you posted is not the build log. The title says "Build messages"
> My build command is F9
Look at the "Build log", you'll find something like
g++ -Wall -g -c foo.cpp -o foo.o |
> then I get "undefined reference" on basically every "_glut" command in the program.
http://www.cplusplus.com/forum/general/113904/
You did not linked against glut
Project -> Build options -> Linker settings -> Add -> glut
That would add a
-lglut flag to the build command
(may also need to add GL and GLEW)
> A) where to download glew
> B) Step-by-step, how to install which bits where.
Use the official repositories and your package manager
By instance