First of all, sorry, I am a total noob
; yesterday I began using Visual C++ 2008 Express, today I downloaded SFML. I installed it the way I saw in the tutorial (Added include and static lib directories), but I don't know how to link it correctly. I also read lots of other posts concerning this problem, but no one could really help me.
Lots of people say this could be done by rebuilding/recompiling the libraries in VC 2008. Unfortunately, I have no idea how to do this. I mean you can't open *.lib Files directly with VC, so I added them to Project Resource Files, but I get errors all the time. Without them, it doesn't work either.
Actually, I've made only one entry into Additional Dependencies: sfml-system.lib (Configuration is Active(Release)). When I include <SFML/System.hpp>, my program works, but as soon as I use any SFML commands (e.g. the sf::Clock class), I get errors which say the Exe File can't be started (wrong execution configuration). I tried several combinations of linking commands, but it didn't work at all.
I would like to know how to rebuild the Libs (for example sfml-system.lib) exactly because I haven't got any experience with VC and SFML (I always used Bloodshed Dev C++ with SDL). By the way, I am using Windows Vista, might there be any problem? Please help me, it's possible I am on a completely wrong way :wink: ...