My goal is to create an MFC/C++ DLL that does not have any dependencies other than the basic Win32 DLLs. So I chose "Use MFC in a Static Library"
setting in the project properties -> General
-> Use of MFC
:
but when I build this DLL and check the result with the Dependency Walker
I get this:
Showing dependencies on the following MFC Dlls:
MFC90U.DLL
MSVCR90.DLL
MSVCP90.DLL
So what am I doing wrong here?
PS. I'm using Visual Studio 2008
MSVCR90.DLL
andMSVCP90.DLL
aren't MFC binaries. – IInspectable