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

The CMakeLists.txt of the caller_pkg has a typo, this:

  target_link_libraries(main2
  ${catkin_LIBRARIES}
  ${lib_test_INCLUDE_DIRS}
  )

Should use lib_test_LIBRARIES instead:

  target_link_libraries(main2
  ${catkin_LIBRARIES}
  ${lib_test_LIBRARIES}
  )