Hi there =)
I've just installed VS 2008 Prof. and tried to make a Project with SFML...
Everything works find except, when starting the .exe, this message shows up and the programm terminates:
I try to run this code:
#include "stdafx.h" //stdafx: #include <SFML/System.hpp>
int main()
{
sf::Clock Clock;
while (Clock.GetElapsedTime() < 5.f)
{
std::cout << Clock.GetElapsedTime() << std::endl;
sf::Sleep(0.5f);
}
return 0;
}
Did I forget something?
Sincerely,
BloodGod
EDIT:
Ok, I see....I have to build the libs my self! Seems to work now =D.
And again: SFML dominates!