catkin_package(INCLUDE_DIRS include) vs. include_directories(include)
Hi,
What does the catkin_package
call do when you specify include
as an INCLUDE_DIRS
and is that the same as specifying include
inside of include_directories
?
There is a short explanation on the template CMakeLists.txt file but it doesn't mention anything about the two above methods being the same effectively (if at all they are)? If they are not the same then what is the purpose of each individual one.
Thank you.