如何从 Qt 的项目文件创建 Visual Studio 2008 .vcproj 文件
我正在使用 Qt4.8.0 创建应用程序。我想从 Qt 的 .pro 项目文件创建一个 MSVC 2008 项目文件以进行“Win32 Release”配置。 我使用以下内容来创建项目文件。但是生成的 .vcproj 文件仅具有“x64”配置。
qmake -tp vc -r -spec win32-msvc2008 "CONFIG += Release"
我在 Qt4.7.4 中使用了相同的命令,它确实使用“Release|Win32”配置创建了 .vcproj 文件。但对于 Qt4.8.0,它仅创建具有“x64”配置的 .vcproj 文件。
我在 common.pri 文件中提到了以下内容:
CONFIG += x86
CONFIG -= x86_64
QMAKE_LFLAGS_RELEASE += /MACHINE:X86 /LTCG
有人可以帮我生成“Release|Win32”配置的 .vcproj 文件吗?
谢谢,
I am using Qt4.8.0 for creating an application. I wanted to create a MSVC 2008 project file from Qt's .pro project file for "Win32 Release" configuration.
I used the following to create the project file. However the generated .vcproj file only has "x64" configuration.
qmake -tp vc -r -spec win32-msvc2008 "CONFIG += Release"
I used the same command with Qt4.7.4 and it did created .vcproj file with "Release|Win32" configuration. But with Qt4.8.0 it only created .vcproj file with "x64" configuration.
I have mentioned following in the common.pri file:
CONFIG += x86
CONFIG -= x86_64
QMAKE_LFLAGS_RELEASE += /MACHINE:X86 /LTCG
Can someone please help me to generate .vcproj file for "Release|Win32" configuration please.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在从 x64 交叉编译工具 shell 运行它 - 使用常规的 vcvars32.bat 之一
You are running it from the x64 cross compile tools shell - use theregular vcvars32.bat one