我有一个依赖于jemalloc
外部库的项目。反过来jemalloc
取决于。pthread
在cmake中,如何指定这两个库之间的依赖关系?
到目前为止,我尝试过:
target_link_libraries(jemalloc pthread)
这不起作用,因为jemalloc
它是一个外部库target_link_libraries(current_library jemalloc pthread)
哪个有效,但是在所有使用的库中指定pthread
after是不方便的。我还需要为每个可执行文件和测试添加。jemalloc
jemalloc
jemalloc pthread