编译时去掉msvcr100

来源:互联网 发布:子曰法语之言能无从乎 编辑:程序博客网 时间:2024/06/06 20:57
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