qmake substituting c++14 with c++1
-
I'm using Qt Creator 3.3.2 to build a c++ project. I'm using clang 3.5 and the std lib that comes with gcc 4.9. In the qmake project file I've added the line CONFIG += c++14. In the resulting makefile it says -std=c++11 however, and my program will not compile. If I manually edit the makefile to -std=c++14 everything works as expected.
This is ok, but sometimes the makefile will be overwritten by changes to my project layout and I have to edit it again. Is there a way around this? -
Should work with qmake from Qt 5.4.0 or higher...
-