Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenGL Unresolved external symbol _gluLookAt@72 and _gluPerspective@32 in Visual Studio 2012

I created an empty Win32 application in visual studio 2012. Afterwards, I setup the OpenGL and GLU libraries (glut32.lib OpenGL32.Lib) through Configuration Properties -> Linker -> Input -> Additional Dependencies. I have the libraries imported, yet the linker seems to tell me that it can't find some of the GLU methods, as the title sugests, _gluLookAt and _gluPerspctive. What could I be missing?

like image 232
rdelfin Avatar asked Nov 21 '25 12:11

rdelfin


1 Answers

Add glu32.lib to your "Additional Dependencies" list.

like image 99
Jeremy Friesner Avatar answered Nov 23 '25 01:11

Jeremy Friesner