VC linker problems

hello, I’m studying “tricks of the windows…” book and when I compile the program everything is ok but when I try to link them I get the LNK 2001 error. All of the header files and libraries are copied into the VC directory.
What could be the problem(s)

Hello,

you must link the libraries. Go to the Project->Settings->Libraries menu and add opengl32.lib glu32.lib (& glut32.lib if you use glut).

Osku