重複の可能性:
Qt Creator の VC++ コンパイラ
私は初心者です。Windows用のQt 5ベータ版に同梱されている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)
ここで重要なことは、コンパイラが選択されていないことです 。
「管理」ボタンをクリックすると、「コンパイラ」タブが表示されます:
自動検出: Windows 7 用 Microsoft
Windows
SDK (7.1.1700.0.30514)(x86)
)(amd64)
Microsoft Windows SDK for Windows 7 (7.1.1700.0.30514)(ia64)
Microsoft Windows SDK for Windows 7 (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)
私が使用している: OS: Windows 7
最初に「Microsoft Windows SDK for Windows 7 and .NET Framework 4」を試しましたが、コードのコンパイルに失敗しました。次に、VS2010をインストールしましたが、コンパイルにも失敗しました。
どんな体でも私を助けることができますか??
Qt Creator 2.6 のビルドと実行オプションの画像を投稿したかったのですが、Stack Overflow の新しいメンバーであるため投稿できませんでした。
前もって感謝します