编译时去掉msvcr100

Release版本
打开 Visual Studio, 打开 project Properties.
打开 Configuration Properties | C/C++ | Code Generation
找到 Runtime Library setting.  将 Multi-threaded DLL (/MD) 改为 Multi-threaded (/MT)
Rebuild.
 
Debug版本
打开Visual Studio, 打开 the project Properties.
I changed my Configuration to Debug.
打开 Configuration Properties | C/C++ | Code Generation
找到the Runtime Library setting.  将 Multi-threaded Debug DLL (/MDd) 改为 Multi-threaded Debug (/MTd)
Rebuild the debug

你可能感兴趣的:(编译时去掉msvcr100)