I am updating the VS2010 project to VS2013. One of my applications is looking for mfc120.lib (or mfc120d.lib for debug builds). However, it seems that VS2013 comes with mfc120 * u * .lib and mfc120 * u * d.lib (presumably the Unicode version, which is the only version of MFC supported by VS2013).
Here are the linker errors that I get:
LINK : fatal error LNK1104: cannot open file 'mfc120.lib'
LINK : fatal error LNK1104: cannot open file 'mfc120d.lib'
I look through the project property sheets and see no settings to indicate which MFC library file I want to link to. It does not even appear on the Linker → Command Line page of the property sheets.
Can someone help me figure out how to get the project to reference the library files I need?
Thank you very much!
source
share