Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In CMake, is there a way to specify that all my executables links to some library? Basically I want all my executables link to tcmalloc and profiler. Simply specify -ltcmalloc and -lprofiler is not a good solution because I want to let CMake find the paths to the library in a portable way.

share|improve this question

2 Answers

up vote 2 down vote accepted

You can override the built-in add_executable function with your own which always adds the required link dependencies:

macro (add_executable _name)
    # invoke built-in add_executable
    _add_executable(${ARGV})
    if (TARGET ${_name})
        target_link_libraries(${_name} tcmalloc profiler)
    endif()
endmacro()
share|improve this answer
I wasn't aware you could override the built-in commands. Good to know. – Stephen Newell May 11 '12 at 18:09

You can write a function/macro in CMake that does the work for you.

function(setup name sources
add_executable(name sources)
target_link_library(name tcmalloc profiler)
endfunction(setup)
setup(foo foo.c)
setup(bar bar.c)

Check out the documentation for more information.

share|improve this answer
It works, but kind of hacky. I need to replace every add_executable with setup. Is there some variable that I can set globally to achieve this? – icando May 11 '12 at 17:31
You can modify the CMAKE_EXE_LINKER_FLAGS variable (check CMakeCache.txt in your build directory). Personally I'd say that's more of a hack than switching to a function, but if you have a significant number of executables in your project that's the faster solution. – Stephen Newell May 11 '12 at 17:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.