ibr
ibr

Reputation: 439

QT 32 bit for VS2017

I have C++ project where I need to use QT in it, but the problem is that I'm using VS2017 and the project is 32 bit, but when I tried to install QT for VS2016 there where no 32 bit for it, is there any other source that has QT as 32 bit for VS2017?

Thanks

Upvotes: 0

Views: 1105

Answers (1)

Konrad
Konrad

Reputation: 7198

Just like I said in the comment and you confirmed it, MSVC2015 32 bit official prebuild version from the installer will work with VS2017 as VC runtime in MSVC 2017 is binary compatible with 2015 as explained here:

https://blogs.msdn.microsoft.com/vcblog/2017/03/07/binary-compatibility-and-pain-free-upgrade-why-moving-to-visual-studio-2017-is-almost-too-easy/

If Qt team didn't provide MSVC2017 32 bit build it means that it just works.

Upvotes: 1

Related Questions