如何在Qt Creator中启用自定义gcc参数?

时间:2011-10-04 00:50:28

标签: c++ qt-creator

我需要在Qt Creator中为g ++传入“-std = c ++ 0x”。我在构建环境中放置了一个变量: enter image description here

但我仍然收到警告:

  

警告:扩展初始化程序列表仅适用于-std = c ++ 0x或-std = gnu ++ 0x

1 个答案:

答案 0 :(得分:17)

您需要在.pro文件中添加QMAKE_CXXFLAGS + = - std = c ++ 0x。