CMake 并包括其他 makefile
假设我有一个 CMakeLists.txt,并且我想调用另一个包含该文件中的另一个 makefile(类似于 C 中的 #include 语法),我将如何完成此操作?
Lets say I have a CMakeLists.txt and I want to call another include another makefile in that file (similar to the #include syntax in C), how would I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 CMake 文档:
< strong>
include
:从给定文件中读取 CMake 列表文件代码。使用示例:
CMakeLists.txt:
Project.txt:
From the CMake documentation:
include
: Read CMake listfile code from the given file.Example use:
CMakeLists.txt:
Project.txt: