I am given this VS project as a test and I am supposed to modify it.
It is a VS 9.0 project and I upgraded it to 2012 (I tried openning it with a VS 2008 it tells me that the project is written in an older version+.) I upgraded it and also followed the modifications suggested here and basically changed the properties mentioned in the pictures for both the debug and the release mode. Unfortunately the program compiles, but it gives me the error:
"unable to start program the system cannot find file specified"
Have I messed up something in the project properties?
Not sure if relevant, but the project uses MFC for which I included the header and the library files from: :...\Microsoft Visual Studio 9.0\VC\atlmfc... I was getting:
#error Please use the /MD switch for _AFXDLL builds
and to get rid of that, I set:
Use /MD (Properties -> C/C++ -> Code Generation) and shared MFC (Properties -> General -> Use of MFC) as was suggested on the forums. Almost definitely not relevant, but thought I would mention it!