I had a terribly slow compilation process from out of the box Qt 5.7 with Windows 10.
I found that (compilation time is divided by 10) by replacing the MinGW tooltip on Windows one
In Qt Creator, in Tools / Options / Build and Run, you need to make sure that all three tabs of Qt Versions, Compilers and Debuggers are configured
For versions of Qt, MSVC2015 is required, which you can get using MaintenanceTools.exe in the root of your Qt installation (default is C: \ Qt)
The compiler needs MSVC C ++ 14.0, which I think you will get with Visual Studio 2015 (it was already for me)
Debugger needs the CDB you get with Windows Kit 10
I installed everything, I definitely added a new kit to my project (MSVC2015 desktop) and poof! The compilation time has passed.
source share