Ok, sorry I had some stuff to do and so wasn't able to reply right away.
I followed the tutorial and this is what happened.
I just used this code that I found from another tutorial:
#include <SFML/Window.hpp>
using namespace sf;
int main()
{
VideoMode videoMode(320,240);
Window window(videoMode,"Basic Display Window");
window.display();
system("PAUSE");
window.close();
return EXIT_SUCCESS;
}
And I get a total of 8 errors, all of which are along the lines of this:
Error 2 error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall sf::String::~String(void)" (__imp_??1String@sf@@QAE@XZ) referenced in function _main c:\Users\Connor\documents\visual studio 2012\Projects\SFML\SFML\Source.obj SFML