The first thing you can test is an empty program linked against sfml-window
#include <SFML/Window.hpp>
int main()
{
return 0;
}
And one with a sf::Window declared
#include <SFML/Window.hpp>
int main()
{
sf::Window window(sf::VideoMode(800, 600), "test");
return 0;
}