I am new to CMake and just want to understand some details about how target_link_libraries works.
To include a library, let's say boost. We can simply do include_directories(BOOST_LIBRARY_PATH). This allows my project to compile correctly and no errors report.
But after reading some posts online, I notice that people usually add target_link_libraries(executable boost_library) after include directories, so I just wonder why this line is needed.
Since my project is quite sensitive in terms of performance (i.e., I want it to run as fast as possible) my questions are as follows:
(1) What target_link_libraries actually do? (2) If we don't add this line, does it hurt performance? (3) What are the advantages of including target_link_libraries?
target_link_libraries
does different things depending on the parameter passed. If you should use it or not depends on what exactly you're trying to achieve. (I'd recommend usingtarget_include_directories
instead ofinclude_directories
though, since it limits the use of the include dir to a single target and also allows you to make include dirs available to linking cmake library targets, if the headers are used in public headers of a library target.)INTERFACE
library target is an option which can be used with header only libraries. Furthermore for installed external libraries providing cmake find/configuration scripts (usually) allows you to gain access toIMPORTED
library targets that automatically make include dirs and dependencies for the target available to the target linking viatarget_link_libraries
, if set up properly. I strongly recommend using this option with boost.target_link_libraries(executable pthread)
on Linux.My recommendation in your case would be:
find_package
+target_link_libraries
to "link" the header lib which in this case is just a clean way of making the headers available to your target. (I assume you're using boost as a header only lib, not the static or shared version of the lib.)Note that the program won't be any faster of slower compared to using
include_directories
to specify the input directory; the speed of the cmake configuration may change a bit, but I don't recommend cutting any corners there.