I'm using visual studios c++ 2010 express edition. I downloaded the Visual C++ 10 (2010) - 32 bits AND Visual C++ 10 (2010) - 64 bits
I start a brand new win32 console application. I follow the steps here exactly.
http://www.sfml-dev.org/tutorials/2.0/start-vc.php. I have tried using both 32 bit and 64 bit. I am using dynamic dlls and have placed them in the debug and release folders appropriately. but when I try to compile a basically blank program it gives me
1>LINK : fatal error LNK1181: cannot open input file 'sfml-graphics-2.lib'
this is the only code in the program
// teste.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}
I even tried doing some things not in the tutorial. I added SFML_DYNAMIC to the C++ Optimization. I added The lib and Include paths to the VC++ Directories. I tried flip flopping around incremental linking and link library dependencies. I don't know what else to do.