Did you compile SFML? If so, with what CMake settings?
No, I used the GCC DW2 download. Darn, I didn't read this first:
The "getting started" tutorials are not ready yet, so if you have no idea how to install and use this version, you'd better wait until the final version is released, and tutorials are written.
Did you use Code::Blocks, or a makefile? Can you show the project/makefile?
I used Code::Blocks, here's the project:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<CodeBlocks_project_file>
<FileVersion major="1" minor="6" />
<Project>
<Option title="sfml2_1" />
<Option pch_mode="2" />
<Option compiler="gcc" />
<Build>
<Target title="Debug">
<Option output="bin\Debug\sfml2_1" prefix_auto="1" extension_auto="1" />
<Option object_output="obj\Debug\" />
<Option type="1" />
<Option compiler="gcc" />
<Compiler>
<Add option="-g" />
</Compiler>
</Target>
<Target title="Release">
<Option output="bin\Release\sfml2_1" prefix_auto="1" extension_auto="1" />
<Option object_output="obj\Release\" />
<Option type="1" />
<Option compiler="gcc" />
<Compiler>
<Add option="-O2" />
</Compiler>
<Linker>
<Add option="-s" />
</Linker>
</Target>
</Build>
<Compiler>
<Add option="-Wall" />
<Add directory="C:\SFML2MGW\include" />
</Compiler>
<Linker>
<Add library="sfml-audio" />
<Add library="sfml-graphics" />
<Add library="sfml-window" />
<Add library="sfml-system" />
<Add directory="C:\SFML2MGW\lib" />
</Linker>
<Unit filename="main2.cpp" />
<Extensions>
<code_completion />
<debugger />
</Extensions>
</Project>
</CodeBlocks_project_file>