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 Problem can be solved by changing "libmylibrary.so" to "mylibrary" in the following lines of CMakeLists.txt of Package A:

from:

catkin_package(
INCLUDE_DIRS include 
LIBRARIES libmylibrary.so 
CATKIN_DEPENDS roscpp rospy
# DEPENDS system_lib
)

to:

catkin_package(
INCLUDE_DIRS include 
LIBRARIES mylibrary
CATKIN_DEPENDS roscpp rospy
# DEPENDS system_lib
)