使用 Visual Studio 命令提示符构建 Qt 后,我的配置字符串:configure.exe -release
我尝试测试我的第一个 hello world 应用程序
#include <QtCore/QCoreApplication>
#include <iostream>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
std::cout<<"hello";
return a.exec();
}
但我收到了这个错误:
错误 1 错误 LNK1112: 模块机器类型 'x64' 与目标机器类型 'X86' 冲突 c:\Users\Kato\documents\visual studio 2010\Projects\qhelloworld\qhelloworld\QtCore4.lib(QtCore4.dll) qhelloworld
有什么帮助吗??