While trying to integrate some of the initialization code from the OpenGL tutorial with my current program, VS 2010 told me
1>Main.obj : error LNK2019: unresolved external symbol _gluPerspective@32 referenced in function _main
1>C:\Users\Nick\Documents\Visual Studio 2010\Projects\Basebal sim\Debug\Basebal sim.exe : fatal error LNK1120: 1 unresolved externals
In another thread, Laurent suggested that sfml-main.lib was never linked. At the moment, all of my libraries are linked statically. I quickly discovered that sfml-main-s-d.lib does not exist. I instead tried
sfml-system-s-d.lib
sfml-window-s-d.lib
sfml-graphics-s-d.lib
sfml-main-d.lib
After linking this library, the compiler still produces the same error.