I have just started SFML programming and I have received my first error. The code is:
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow Window(sf::VideoMode(900,700), "SFML");
while(Window.isOpen())
{
sf::Event Event;
while(Window.pollEvent(Event))
{
if (Event.type == sf::Event::Closed)
Window.close();
}
Window.display();
}
}
And the error message is:
1>LINK : fatal error LNK1104: cannot open file 'sfml-graphics-d.obj'
I have no idea what this means so if anybody could help me I would really appreciate it