cheers, the build went through without any error this time except the code doesn't run as expected, its supposed to show a cyan circle instead what i've got here is blank screen, but since now i got it linked i'll figure it out by myself, thank you for your help!
ps here the code maybe its for 1.2 i haven't got a chance to look into it
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow window(sf::VideoMode(800, 480), "SFMLApplication");
sf::CircleShape shape;
shape.setRadius(40.f);
shape.setPosition(100.f, 100.f);
shape.setFillColor(sf::Color::Cyan);
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();
}
}