在 CMake 中,有没有办法指定我的所有可执行文件都链接到某个库?基本上我希望我所有的可执行文件都链接到 tcmalloc 和分析器。简单地指定-ltcmalloc和-lprofiler并不是一个好的解决方案,因为我想让CMake以可移植的方式找到库的路径。
最佳答案
您可以使用自己的函数覆盖内置的 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()