1
General / [SOLVED] Visual Studio 2008 Professional Problem
« on: May 25, 2008, 10:02:24 pm »
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:
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!
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:
Code: [Select]
#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!