I wanted to do static linking of Qt libraries to my project. I've done some tutorial (I downloaded source version of qt and then write a configure line in VS command prompt, I build everything by jom.exe). But apparently it works only with 32 bit versions of project. I want to make it work on 64 bit.
Error is in the line:
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
and it's says:
qwindows.lib(main.obj) : fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'x64'
any ideas how to build it on x64 machine beacause I cannot find any useful information for this problem.