build-process – CMake并包含其他makefile

前端之家收集整理的这篇文章主要介绍了build-process – CMake并包含其他makefile前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有一个CMakeLists.txt并且我想在另一个包含另一个makefile的文件调用(类似于C中的#include语法),我将如何实现这一目标?

解决方法

CMake documentation

> include:从给定文件中读取CMake列表文件代码.

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

使用示例:

的CMakeLists.txt:

cmake_minimum_required(VERSION 2.8)
include (Project.txt)

Project.txt:

project (Project)
add_executable(Project project.c)
原文链接:https://www.f2er.com/c/110763.html

猜你在找的C&C++相关文章