如何从 Qt 的项目文件创建 Visual Studio 2008 .vcproj 文件

发布于 2024-12-29 06:25:34 字数 511 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞎闹 2025-01-05 06:25:34

您正在从 x64 交叉编译工具 shell 运行它 - 使用常规的 vcvars32.bat 之一

You are running it from the x64 cross compile tools shell - use theregular vcvars32.bat one

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文