在CMake中,有没有办法指定我的所有可执行文件都链接到某个库?基本上我希望我的所有可执行文件都链接到tcmalloc和profiler。简单地指定-ltcmalloc和-lprofiler不是一个好的解决方案,因为我想让CMake以便携的方式找到库的路径。
答案 0 :(得分:11)
您可以使用自己的函数覆盖内置add_executable
函数,该函数始终添加所需的链接依赖项:
macro (add_executable _name)
# invoke built-in add_executable
_add_executable(${ARGV})
if (TARGET ${_name})
target_link_libraries(${_name} tcmalloc profiler)
endif()
endmacro()
答案 1 :(得分:1)
您可以在CMake中编写一个功能/宏来为您完成工作。
function(setup name sources
add_executable(name sources)
target_link_library(name tcmalloc profiler)
endfunction(setup)
setup(foo foo.c)
setup(bar bar.c)
查看the documentation了解详情。