Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Deadshot101

Pages: [1]
1
General / Re: Please help!
« on: December 02, 2014, 09:56:22 am »
I have tried rebuilding but it still comes up with the same error message. I followed the installation tutorial then I watched a SFML 2.0 tutorial on youtube and copied the code then I got the error message.

2
General / Please help!
« on: December 02, 2014, 09:49:38 am »
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  :)

Pages: [1]