but it does nothing.
Which means...? What is your code supposed to do?
Seems like an IDE- and not SFML-related problem. Maybe people at an Eclipse forum can help you more
I'm just trying to run a code from tutorial page.
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
sf::CircleShape shape(100.f);
shape.setFillColor(sf::Color::Green);
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.draw(shape);
window.display();
}
return 0;
}
Meanwhile, in the same project, if I replace the example code, with just "Hello World" - console shows me an output pretty fine...
May be you are right about asking for help on eclipse forum, as I got SFML working in VS 13 in few minutes...