Visual Studio can compile but can't link Qt references
Solved
Qt Creator and other tools
-
I have a c++ solution that uses Qt classes. I have Qt6.2.2 installed. I ported this solution to VS 2019 and have Qt extension installed. I provided all paths to Qt includes and also the QtCore like below screenshot:
Project compiles fine, but can't link with any of Qt objects although it has path to Qt libs. What's missing?
Here's the errors
-
You compile a 32Bit executable but link against 64bit libs.
Compile your app with 64bits. -
@Christian-Ehrlicher Thank you for quick response! I changed the app to x64 and all Qt reference errors was resolved.