Qt 6.11 is out! See what's new in the release
blog
Qmake x86/x64 and dependent lib files
Qt Creator and other tools
1
Posts
1
Posters
2.6k
Views
1
Watching
-
Hi
I have a project which targets windows x86 and x64 os. I'm using MSVC compiler with QtCreator in order to achieve that goal.
Now my problem is that, I want to specify qmake to take x64 version of dependend lib files when I build with x64 qt version, the same with x86. For example:
@win32:LIBS += ../Libs/SomeLibrary.lib@
I have 2 edition of SomeLibrary.lib, one is x86 and one is x64. How can I tell qmake to take the correct version of lib file?
Thanks