Hi, I also have some problems with compiling SFML2 static libraries.
I hope to not be doing any confusion with terms, what I mean is that I used to link
-s files with 1.6 because I didn't want to copy the DLLs in the exe dirs.
Anyway, here's my problem:
I've downloaded the SFML2 tarball from GitiHub then followed
this tutorial to get Visual C++ 2010 solution files etc.
I set CMake like this and have tried doing everything from scratch with and without FORCE_STATIC_VCRT:
http://i.imgur.com/LFbt5.jpg (Actually I did build the examples)
In the output directory there are only the following files:
sfml-*-d-2.dll
sfml-*-d.lib
sfml-*-d.exp
sfml-*-d-2.ilk
sfml-*-d-2.pdb
(and the same as above without -d for Release)
Now, unless I'm mistaken the un-bolded ones are garbage from the compiler and can be ignored.
The problem is that I'm not getting any *-s files to be linked in my projects. If I link normal DLLs the code gets compiled but when I open the executable I get a missing DLL error. Also I have defined SFML_STATIC in my code.