If everything whas been set up correctly, the following snippet will show a window titled "SFML works!" with a green circle:
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
sf::CircleShape shape(100.f...