Reputation: 439
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
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:
If Qt team didn't provide MSVC2017 32 bit build it means that it just works.
Upvotes: 1