使用cmake创建一个无cmake的Makefile

发布于 2025-01-06 04:03:45 字数 172 浏览 1 评论 0原文

我正在使用 cmake 尝试在 Linux 上构建一个项目。 它生成一个 Unix Makefile 系统,非常好。 问题是,如果 cmake 没有安装在另一台机器上,我就无法使用此 Makefile 在另一台机器上进行构建。 我可以在 cmake 上设置任何选项或标志,以便生成一个不调用 cmake 的 Makefile 吗?

I'm using cmake to try and build a project on Linux.
It generates a Unix Makefile system, which is very nice.
The problem is that I can't build on another machine with this Makefile if cmake is not install on that machine.
Is there any option or flag I can set on cmake so that it generates a Makefile that doesn't call cmake in it?

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

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

发布评论

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

评论(1

§普罗旺斯的薰衣草 2025-01-13 04:03:45

据我所知,这是不可能的。如果 CMakelists.txt 文件发生更改,CMake 在 Makefile 中使用自身进行依赖性扫描并更新 Makefile。如果 cmake 在构建过程中不可用,则此方法无法工作。

As far as I know, this is not possible. CMake uses itself inside the Makefiles for dependency scanning and updating the Makefiles, if a CMakelists.txt file has changed. This cannot work, if cmake is not available during the build.

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