我正在尝试collidingmice
在 Windows 10 x64 上构建 Qbs 示例并收到以下错误消息:
Qt5Cored.lib(Qt5Cored.dll) : fatal error LNK1112: module machine type 'x64' conflicts with target machine type 'x86'
我尝试在 collidingmice.qbs 中设置以下内容
qbs.architecture : "x64"
并收到消息
'x64' differs from the architecture produced by this compiler (x86)
然后我尝试了
qbs.architecture : "x86_64"
给出错误消息;
'x86_64' differs from the architecture produced by this compiler (x86)
然后我尝试了
qbs.architecture : "x86"
给出错误消息;
Qt5Cored.lib(Qt5Cored.dll) : fatal error LNK1112: module machine type 'x64' conflicts with target machine type 'x86'
有没有办法将目标机器类型设置为Qbs'x86'
或'x64'
在 Qbs 中?