How to install compiler in Qt?

I am brand new with Qt and I downloaded the standalone version of "Qt 5.3.2 for Windows 64-bit (VS 2013, OpenGL, 573 MB)"

I can not compile my project.

I have:

Qt Creator 3.2.1 (open source) Based on Qt 5.3.2 (MSVC 2010, 32 bit)

In my build and run I have, To dial: Desktop Qt 5.3 MSVC2013 OpenGL 64bit For version Qt: Qt 5.3 MSVC2013 OpenGL 64bit

and there is nothing for the compilers tab. I do not know what I should put in this section. What did I miss?

When trying to compile my project, the following error message appeared:

14:44:12: The configuration is faulty. See the Issues view for details.

Error creating / deploying TextFinder project (bundle: Qt 5.3 desktop

MSVC2013 OpenGL 64 bit) When performing the "Do" step

and

Qt creator needs a compiler to build. Configure the compiler in kit options.

+4
source share
1 answer

Go to Tools->Options->Build & Runand Compilersclick on the tab Addto add a new compiler. You can also manage sets on the tab Kits. Do not forget to set qmakethe tab Qt Versions.

Also, if you want a MSVCversion Qt, you need to install Microsoft Visual Studio 2010or 2013depending on the version used Qt.

If you are new, I recommend that you download the version MinGWfrom qt-project.org , and everything should work fine.

MinGW Windows GCC, VS Microsoft.

+7

All Articles