Qt的配置有哪些不同的平台

时间:2011-03-06 14:56:28

标签: qt build qt-creator

我正在尝试使用以下命令在Windows上构建Qt:

configure -static -opensource -no-webkit -no-qt3support -no-audio-backend -no-exceptions -no-opengl -no-phonon -phonon-backend

我收到此错误:

Unable to detect the platform from environment. Use -platform command lineargument

但是我不知道“-platform”参数的不同可能值是什么。我试过“win32”和“windows”,但没有一个是正确的。我找不到任何列出可能值的引用。有人知道我需要为Windows 7(用Qt Creator开发)吗?

2 个答案:

答案 0 :(得分:20)

在qt dir中打开mkspecs文件夹。在那里你可以看到多个文件夹。此文件夹的名称是-platform开关的值。

例如,您可以使用win32-msvcmsvc表示使用MS visual studio编译器来建立qt。

答案 1 :(得分:0)

this topic上用俄语发现答案。

您应该使用这些参数尝试-platform

  • win32-g ++(for mingw)
  • win32-icc(for intel)
  • win32-msvc(视觉工作室)