It's fairly easy. First you need to re-compile the projects. Find the vc2008 sln file and open, vc2010 will ask to convert, go ahead and convert it. Then go to Project-> properties VC++ directories add the path to include and lib directories.
C:\Users\Sean\Documents\SFML-1.6\include and
C:\Users\Sean\Documents\SFML-1.6\lib for me obviously yours will be different.
You should be able to compile (a few samples will fail, dont worry about them)
copy files from SFML-1.6/lib/vc2008 to SFML-1.6/lib
Create a new project specifically for sfml and open it.
add include and lib directories like before.
Then on property page select linker->input and add
|
sfml-system-s-d.lib;sfml-window-s-d.lib;sfml-network-s-d.lib;sfml-graphics-s-d.lib;sfml-main-d.lib;sfml-audio-s-d.lib;
| |
into additional dependencies NOTE: DO NOT OVERWRITE EXSISTING DEPS
these are the static debug libs. I find them easier to work with ie: no copying the dll's.
You should be able to compile, link and run an sfml app now.
If this does'nt help check sfml's tutorial, getting started section explains it with pictures.
http://www.sfml-dev.org/tutorials/1.6/start-vc.php