Hi,
I know that many people had that problem and i did everything u said in the other threads but i cant solve the problem.
I use the -d libs and included everything that was said in the tutorial.
#include <SFML/System.hpp>
#include <SFML/Window.hpp>
#include <iostream>
using namespace std;
using namespace sf;
int main()
{
Window App(VideoMode(800,600,32), "SFML Window");
App.Create(VideoMode(800,600,32),"SFML Window");
// Start main loop
while (App.IsOpened())
{
Event Event;
while(App.GetEvent(Event))
{
if (Event.Type == Event::Closed)
App.Close();
if ((Event.Type == Event::KeyPressed) && (Event.Key.Code == Key::Escape))
App.Close();
}
App.Display();
}
return EXIT_SUCCESS;
}
thx for your help.