4

可能重复:
Qt Creator 的 VC++ 编译器

我是新手。我正在尝试在 Windows 的 Qt 5 beta 附带的 qt creator 2.6 中编译以下代码:

#include <QCoreApplication>
#include <QDebug>
int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    qDebug() << "hello Qt5";
    return a.exec();
}

我收到以下错误:

Qt Creator needs a compiler set up to build. Configure a compiler in the kit options.
File not found:

Qt creator > tools > options > build and run > kits 如下: Name:
Auto-detect:
Desktop Qt 5.0.0 beta2 MSVC2010 32bit (SDK) (default)
Manual: (none)
重要的是没有选择编译器

当我单击“管理”按钮时,它会将我带到“编译器”选项卡:
自动检测:
Microsoft Windows SDK for Windows 7 (7.1.1700.0.30514)(x86)
Microsoft Windows SDK for Windows 7 (7.1.1700.0.30514 )(amd64)
适用于 Windows 7 的 Microsoft Windows SDK (7.1.1700.0.30514)(ia64)
适用于 Windows 7 的 Microsoft Windows SDK (7.1.1700.0.30514)()
....

Microsoft Visual C++ 编译器 10.0 (x86)
Microsoft Visual C++ 编译器 10.0 (x86)
Microsoft Visual C++ 编译器 10.0 (amd64)
...

Qt 版本选项卡如下:
自动检测:Qt 5.0.0 beta2 MSVC2010 32bit (SDK)

我正在使用:操作系统:Windows 7
首先我尝试了“Microsoft Windows SDK for Windows 7 and .NET Framework 4”,但未能编译代码。然后我安装了VS2010,也编译失败。
有谁能够帮我??

我想发布我的 qt creator 2.6 构建和运行选项的图像,但 Stack Overflow 不允许我这样做,因为我是它的新成员。

提前致谢

4

1 回答 1

0

Go to the "Qt Versions" tab, select the Details button in the Helpers row and select the compiler that you want to use (it must be compatible with the compiler used to compile the Qt libraries).

于 2012-11-28T15:40:29.177 回答