Reputation: 1205
How to use Visual C++ Compiler November 2012 CTP in Qt Creator? And how to configure Qt library to that kind of usage? I need C++11 features like initialization lists.
I khow how to set up CTP compiler for VS2012. But how to invoke it from command line...
For Qt, maybe it can be configured through qmake-spec for CTP compiler?
Upvotes: 2
Views: 634
Reputation: 46
I am able to use Qt 5.2.1 binaries (x86 and amd64) for VS2012 downloaded from qt-project.org.
Upvotes: 1
Reputation: 1602
It's possible in options, category "Build&Run", tab "Compilers". May be autodetection of this compiler fails, but nothing prevents to add it manually.
Upvotes: 0
Reputation: 76721
You need to add the new compiler binaries to PATH from within a VS command prompt. Alternatively, you can point Qt Creator to the compiler binary cl.exe
.
Upvotes: 1