在 CMake 中,有没有办法指定我的所有可执行文件都链接到某个库?基本上我希望我的所有可执行文件都链接到 tcmalloc 和分析器。简单地指定 -ltcmalloc 和 -lprofiler 不是一个好的解决方案,因为我想让 CMake 以可移植的方式找到库的路径。
问问题
4006 次
2 回答
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()
于 2012-05-11T17:57:09.513 回答
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)
查看文档以获取更多信息。
于 2012-05-11T17:11:42.357 回答