user3877872
user3877872

Reputation: 817

Compling Qt Creator on Windows

I installed the Qt's online installer available with MSVC compiler. When I tried to compile my project, it didn't detect any of the kits. Rather showed the error No kits found. Something like problem configuring make.

To run it successfully do we need to install Visual Studio express as well?

Upvotes: 0

Views: 40

Answers (2)

Zlatomir
Zlatomir

Reputation: 7044

For MSVC builds of Qt you need Visual C++ compiler installed separately (Windows SDK before version 8 contained the C++ compiler, so that might be an alternative to installing Visual Studio - but if you go this path check the MSDN to verify what C++ compiler version is in what SDK, because the version must match with the one Qt is built with). Only the MinGW built of Qt is an package that contains an compiler too.

Upvotes: 1

Related Questions