cmakelist中可以添加多个add_executable这个关键词吗
时间: 2023-09-20 07:12:14 浏览: 364
CMake添加引用多个子目录多个CMakeLists同时编译
5星 · 资源好评率100%
是的,CMakeLists.txt 文件中可以添加多个 add_executable 命令,来定义多个可执行文件。每个 add_executable 命令可以定义一个可执行文件,您可以根据需要添加多个命令。例如:
```
add_executable(example1 file1.cpp file2.cpp)
add_executable(example2 file3.cpp file4.cpp)
```
这段代码定义了两个可执行文件,分别为 example1 和 example2。其中,example1 由 file1.cpp 和 file2.cpp 两个源代码文件编译而成,example2 由 file3.cpp 和 file4.cpp 两个源代码文件编译而成。您可以根据自己的需要添加更多的 add_executable 命令。
阅读全文