CMake 并包括其他 makefile

发布于 2024-08-21 20:15:46 字数 90 浏览 4 评论 0原文

假设我有一个 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 技术交流群。

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

发布评论

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

评论(1

疏忽 2024-08-28 20:15:46

来自 CMake 文档

  • < strong>include:从给定文件中读取 CMake 列表文件代码。

    include(<文件|模块> [可选] [RESULT_VARIABLE ]
                        [NO_POLICY_SCOPE])
    

使用示例:

CMakeLists.txt:

cmake_minimum_required(VERSION 2.8)
include (Project.txt)

Project.txt:

project (Project)
add_executable(Project project.c)

From the CMake documentation:

  • include: Read CMake listfile code from the given file.

    include(<file|module> [OPTIONAL] [RESULT_VARIABLE <VAR>]
                        [NO_POLICY_SCOPE])
    

Example use:

CMakeLists.txt:

cmake_minimum_required(VERSION 2.8)
include (Project.txt)

Project.txt:

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