Reputation: 4794
I want to use Qt Creator with MS VC++ 11 but it says there is no toolchain to build Qt. I installed Qt with the full SDK installer. What to do now?
Upvotes: 2
Views: 1195
Reputation: 2017
Isn't MSVC++ 11 comes with Visual Studio 11? If so then Qt hasn't supported makespec
file for that version AFAIK (correct me if I am wrong). But following are the (rough) steps for running Qt Creator with MSVC 2010 nmake/cl
tool-chain..
msvc-2010
toolchain from this site (second page).nmake/cl/cdb
executables.Qt Creator
, by now you will notice msvc-2010
tool-chain has been identified by Qt Creator (Tools -> Options Dialog). If not then manually add it.msvc-2010
has been identified in Qt Versions
tab. If not then manually add it by giving path of qmake
in bin
of Qt SDK folder. It will also select msvc-2010
tool-chain automatically.msvc-2010
tool-chain and compile. Make sure win32-msvc2010
is selected as makespec
file.Hope this helps.
Upvotes: 2
Reputation: 6566
try building using the makespec of Visual Studio 2010.
SET QMAKESPEC=win32-msvc2010
before running configure and qmake should do the job
Upvotes: 0