Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Ubuntu 上使用 Qt Creator,我想使用新的 C++11 功能,但是默认情况下它们没有启用。
如何配置 Qt Creator 以支持新的 C++11 功能?
您可以通过添加:
QMAKE_CXXFLAGS += -std=c++11
到您的 .pro 文件。