首页 > 代码库 > ARX工程必须使用release模式编译
ARX工程必须使用release模式编译
在添加如下代码保证debug版本的arx文件也是使用MFC的release库
// ‘DEBUG workaround‘ below prevents the MFC or ATL #include-s// from pulling in "afx.h" that would force the debug CRT through// #pragma-s.#if defined(_DEBUG) && !defined(_FULLDEBUG_)#define _DEBUG_WAS_DEFINED#undef _DEBUG#pragma message (" Compiling MFC header files in release mode.")#endif #include MFC相关头文件 #ifdef _DEBUG_WAS_DEFINED#define _DEBUG#undef _DEBUG_WAS_DEFINED#endif
ARX工程必须使用release模式编译
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。