I have just recently installed SFML and am trying to learn it but cannot work out why its not working.
My script is from their tutorials, so its very short:
#include <SFML/Window.hpp>
#include <iostream>
int main()
{
// Create the main window
sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");
// Start main loop
bool Running = true;
while (Running)
{
App.Display();
}
return EXIT_SUCCESS;
}
The problem i am having is I am getting a couple of errors and am unsure what I have got wrong…. these are my errors:
Link to my error list is here (couldn’t format the list nicely on here):
http://www.paste.to/MTYzNzE2Mw==
Hope some one can explain where I went wrong.
Thanks!
I have no experience with SFML itself but looks like an issue installing the library or a compilation issue in the linking stage(sfml library isnt being linked against).
Have you followed the getting started tutorials listed here which setup compilation environment for sfml?