ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

to anyone who seek similiar use-case (and myself memo):

include header files in include, and target link lib/*.so when compile, following cmake for reference:

...

include_directories(path/to/header-folder)

...

link_directories(path/to/so-folder)

...

target_link_libraries(app -l${msg_pkg_name})

...