在VS2013中创建了一个空项目,创建了MyApp.h, MyApp.cpp(MyApp.h使用了<afxwin.h>)
build的时候报错:
fatal error C1189: #error : Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]
解决办法:
项目>项目属性>配置属性>常规>MFC的使用:根据需求选择"在静态库中使用MFC"或者"在共享DLL中使用MFC"
再build,继续报错:
error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library.
解决办法:
项目>项目属性>配置属性>常规>字符集:选择“使用Unicode字符集”