在 Qt Creator 中禁用编译器警告项目范围(使用 MSVC 时)
Posted
技术标签:
【中文标题】在 Qt Creator 中禁用编译器警告项目范围(使用 MSVC 时)【英文标题】:Disable a compiler-warning project-wide in Qt Creator (when using MSVC) 【发布时间】:2013-08-26 23:11:44 【问题描述】:我想禁用特定警告,例如 C++ warning C4018: '<' : signed/unsigned mismatch
,但要在项目范围内禁用。我需要在我的 .pro 文件中添加什么才能达到这种效果?
【问题讨论】:
【参考方案1】:将以下行添加到您的 PRO 文件中:
QMAKE_CXXFLAGS += /wd4996
【讨论】:
@DenysRogovchenko 你是什么意思?以上是关于在 Qt Creator 中禁用编译器警告项目范围(使用 MSVC 时)的主要内容,如果未能解决你的问题,请参考以下文章
Qt Creator:当我在项目的子目录中有文件时,它不包含在项目范围的搜索中
QT Creator - LNK2019 和 LNK1120 错误 [重复]