I understand that you all probably get quite a few topics posted about this, and before you ask; yes I have looked through the forum, and the rest of the internet before writing this.
I'm using Visual Studio Express 2010 and I have the following code:
#include <SFML/System.hpp>
int main()
{
sf::sleep(sf::seconds(1.f));
return 0;
}
I have placed the SFML folder with the include files in the Visual Studio 10.0\VC\include folder, and all the libraries have been placed in the \lib folder. With that in mind I shouldn't need to specify any additional Include Directories or Library Directories.
Under the Linker->Input section of the project properties I have added in the additional dependencies I require (sfml-system-2.dll and sfml-system-d-2.dll)
The sfml-system-2.dll and sfml-system-d-2.dll
And I keep getting the error:
1>LINK : fatal error LNK1104: cannot open file 'sfml-system-2.dll'
Any suggestions?