How to enable C ++ 11 support in a common project in Qt Creator 2.8.0?

I know that Qt Creator can recognize C ++ 11 in Cmake and QT projects, but how to activate it in common projects (for example, created using the "import an existing project" option)? It is not enabled by default (for example, autocomplete does not work for C ++ 11 classes such as std::shared_ptr , etc.).

+4
source share
1 answer

This was fixed quite a while ago for release 3.0: https://codereview.qt-project.org/#change,62536

Now this should be fine, as in Gerrit's comment:

General project manager: suppose C ++ 11 for cxxVersion.

+1
source

Source: https://habr.com/ru/post/1496971/


All Articles