使用cmake创建一个无cmake的Makefile
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,这是不可能的。如果 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.