如何让qmake编译多个跨平台二进制文件

发布于 2024-08-08 12:02:12 字数 151 浏览 6 评论 0原文

我在一个项目上使用 QT Creator,想知道是否有一个命令可以将项目编译到 Mac、Windows 和 Mac 上。 Linux 二进制文件,因此我可以轻松地将它们发送到其他计算机进行测试,而无需发送整个源代码。目前我正在 Mac OSX 上运行 QT Creator(如果有的话)。

I'm using QT Creator on a project and was wondering if there's a single command to compile the project to a Mac, Windows, & Linux binaries so I can easily send them to other computers for testing without having to send over the whole source code. Currently I'm running the QT Creator on Mac OSX if that matters.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

孤檠 2024-08-15 12:02:12

这是可能的,但并不像您暗示的那么简单。要正确执行此操作,您需要设置一个交叉编译环境,其中包含已为其他平台编译的库,以及为您的平台编译的编译器/可执行文件,可为其他平台生成输出。然后,您需要在 qmake 文件中以某种方式跟踪所有这些变量,以确保生成正确的输出。

This is possible, but it isn't as simple as you imply. To properly do this, you would need to set up a cross-compiling environment complete with libraries already compiled for the other platforms, and compilers/executables compiled for your platform that produce output for the other platform. You would then need to keep track of all these variables somehow in your qmake file to be sure you're producing the correct output.

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