要回答这个问题,需要先理解target是怎么回事。然后再理解target之间的依赖关系。
CMake中由 add_executable() 、 add_library() 等定义 target。这些 target
可以有很多属性。例如 target_sources() 可以为 target 指定源码。target_link_libraries()可以指定 target 需要链接的库。当存在多个 target 时,各个 target 之间可能存在一定的依赖关系。例如题主例子中的 linear-algebra 依赖于math 。现在,假设有第三个 target,需要依赖 linear-algebra 。这个时候,因为 math 是PRIVATE,所以在构建第三个 target 时,就不会链接 math。
目标 由 add_library() 或 add_executable() 生成。
这三个指令类似,这里以 target_include_directories() 为例进行讲解。
cmake-test/ 工程主目录,main.c 调用 libhello-world.so
├── CMakeLists.txt
├── hello-world 生成 libhello-world.so,调用 libhello.so 和 libworld.so
│ ├── CMakeLists.txt
│ ├── hello 生成 libhello.so
│ │ ├── CMakeLists.txt
│ │ ├── hello.c
│ │ └── hello.h libhello.so 对外的头文件
│ ├── hello_world.c
│ ├── hello_world.h libhello-world.so 对外的头文件
│ └── world 生成 libworld.so
│ ├── CMakeLists.txt
│ ├── world.c
│ └── world.h libworld.so 对外的头文件
└── main.c
├────libhello.so
可执行文件────libhello-world.so
├────libworld.so
PRIVATE:私有的。生成的libhello-world.so时,只在hello_world.c中包含了hello.h,libhello-world.so对外的头文件------hello_world.h中不喊了hello.h。而且main.c不会调用hello.c中的函数,或者说 main.c 不知道 hello.c 的存在,那么在 hello-world/CMakeLists.txt 中应该写入:
target_link_libraries(hello-world PRIVATE hello)
target_include_directories(hello-world PRIVATE hello)
INTERFACE:接口。生成 libhello-world.so 时,只在libhello-world.so 对外的头文件——hello_world.h 中包含 了 hello.h, hello_world.c 中不包含 hello.h,即 libhello-world.so 不使用 libhello.so 提供的功能,只使用 hello.h 中的某些信息,比如结构体。但是 main.c 需要使用 libhello.so 中的功能。那么在 hello-world/CMakeLists.txt 中应该写入:
target_link_libraries(hello-world INTERFACE hello)
target_include_directories(hello-world INTERFACE hello)
PUBLIC:公开的。PUBLIC = PRIVATE + INTERFACE。生成 libhello-world.so 时,在 hello_world.c 和 hello_world.h 中都包含了 hello.h。并且 main.c 中也需要使用 libhello.so 提供的功能。那么在 hello-world/CMakeLists.txt 中应该写入:
target_link_libraries(hello-world PUBLIC hello)
target_include_directories(hello-world PUBLIC hello)
实际上,这三个关键字指定的是目标文件依赖项的使用范围(scope)或者一种传递(propagate)
可执行文件依赖 libhello-world.so, libhello-world.so 依赖 libhello.so 和 libworld.so。
target_include_directories() 的功能完全可以使用 include_directories() 实现。但是我还是建议使用 target_include_directories()。为什么?保持清晰!
include_directories(header-dir) 是一个全局包含,向下传递。什么意思呢?就是说如果某个目录的 CMakeLists.txt 中使用了该指令,其下所有的子目录默认也包含了header-dir 目录。
上述例子中,如果在顶层的 cmake-test/CMakeLists.txt 中加入:
include_directories(hello-world)
include_directories(hello-world/hello)
include_directories(hello-world/world)
那么整个工程的源文件在编译时都会增加:
-I hello-world -I hello-world/hello -I hello-world/world ...
各级子目录中无需使用 target_include_directories() 或者 include_directories()了。如果此时查看详细的编译过程(make VERBOSE=1)就会发现编译过程是一大坨,很不舒服。
当然了,在最终子目录的 CMakeLists.txt 文件中,使用 include_directories() 和 target_include_directories() 的效果是相同的。
每一个目录都是一个模块,目录内部应将对外和对内的头文件进行区分,由模块的调用者决定模块是否被传递(PRIVATE,INTERFACE,PUBLIC)。
target_link_libraries(<target> ... <item>... ...)
< target >必须是由add_executable()或add_library()等命令创建的,并且不能是ALIAS目标。
每个< item >可以是:
包含::的项,如Foo::Bar,被假定被导入或ALIAS库目标名称,如果没有这样的目标存在,将导致错误。看到CMP0028政策。
参见cmake-buildsystem(7)手册来定义更多的buildsystem属性。
target_link_libraries(myProject hello) # 连接libhello.so库,默认优先链接动态库
target_link_libraries(myProject libhello.a) # 显示指定链接静态库
target_link_libraries(myProject libhello.so) # 显示指定链接动态库