cmakelist 换行
时间: 2023-09-12 22:02:43 浏览: 372
在 CMakeLists.txt 文件中,你可以使用换行符来分隔多行代码。换行符在 CMakeLists.txt 中通常用于分隔命令、设置变量和定义函数等。
例如,下面是一个简单的 CMakeLists.txt 文件示例,展示了如何使用换行符分隔多行代码:
```cmake
cmake_minimum_required(VERSION 3.12)
project(MyProject)
set(SOURCES
src/main.cpp
src/foo.cpp
src/bar.cpp
)
add_executable(my_executable ${SOURCES})
target_include_directories(my_executable PUBLIC include)
target_link_libraries(my_executable PUBLIC my_library)
```
在这个例子中,每个命令和设置都在单独的一行上,使用换行符进行分隔。这样做可以使 CMakeLists.txt 文件更加清晰易读。
阅读全文