I am following the following tutorial my instructor used in class for a graphics class that started last week.
http://cse.spsu.edu/jchastin/courses/cs4363/labs/ProjectSetup/Project_Setup.html
I am trying to set this up under Win8 using VS2010 pro.
I copied freeglut.dll and glew32.dll to C:\windows\sysWOW64
I get to step 5 to include the include directories - https://i.stack.imgur.com/Li5FV.png
I get to step 7 to include the dependencies - https://i.stack.imgur.com/mkjrB.png
And finally to step 8 for the library directories - https://i.stack.imgur.com/Kll8u.png
I try to compile and I get what seem to be linkage errors according to a quick google search - https://i.stack.imgur.com/3aDGT.png
Google says its a linkage error but everything seems to be linked properly on my end. Is there something I am missing since this is under Windows 8?
Thanks for looking.
Edit: Playing around with the linker directories. I am linking them to:
\freeglut-2.8.1\lib\x86
\glew-1.10.0\lib\Release\Win32
takes the error count down to 23 errors. :) https://i.stack.imgur.com/o4vqo.png
Edit2: freeglut.h is located at \freeglut-2.8.1\include\GL and glew.h is located at \glew-1.10.0\include\GL and both of those are pointing right include directories under C/C++/General's tab.