Reputation: 7820
I know that Qt Creator can recognize C++11 in Cmake and QT projects, but how to activate it in generic projects (e.g. created by "import existing project" option)? It's not enabled by default (e.g. autocomplete doesn't work for C++11 classes such as std::shared_ptr
etc).
Upvotes: 4
Views: 2330
Reputation: 53173
This was fixed quite a while ago for the 3.0 release: https://codereview.qt-project.org/#change,62536
This should be working now just fine as per the Gerrit comment:
Generic project manager: assume C++11 for cxxVersion.
Upvotes: 1