Hello,
I recently installed SFML 1.3 and gave the tutorials a go. The code found in the first tutorial,
Getting started - visual studio, ran fine - I only linked against sfml-system-s-d.lib (debug version).
However, once I tried the
Opening a window tutorial, I encountered a bunch of linker errors (LNK2019, unresolved external symbol, all related to sfml-window-s-d.lib). I did add sfml-window-s-d.lib and sfml-graphics-s-d.lib in addition to sfml-system-s-d.lib, even tried sfml-main-d.lib, but nothing seems to work. I found some threads about similar problems on this forum but none of the proposed solutions there seems to apply here - I'm certain my include and library directories are set up correctly and I'm not mixing up debug and release versions.
I also tried linking to the dynamic versions. For the debug version, that worked - I got a window up and running. For the release version however, I got the following run-time error: unknown software exception (0xc000001d), at location 0x10005058.
Does anyone see what I'm missing here? Help would be greatly appreciated.