先看qt工程的一个错误
his file requires compiler and library support for the ISO C++ 2011 standard.
出现这种问题是因为qt工程使用了c11标准的库,因此需要改下pro的配置,
加上QMAKE_CXXFLAGS += -std=c++0x
CONFIG += C++11
如图
执行clean ,重新构建
qt报错 his file requires compiler and library support for the ISO C++ 2011 standard.
阅读 84
2022-11-07
先看qt工程的一个错误
his file requires compiler and library support for the ISO C++ 2011 standard.
出现这种问题是因为qt工程使用了c11标准的库,因此需要改下pro的配置,
加上QMAKE_CXXFLAGS += -std=c++0x
CONFIG += C++11
如图
执行clean ,重新构建
相关推荐
精彩评论(0)