How to integrate libcreate in an own ros package - (turtlebot1)
Hey there,
what I recently did was installing a ROS driver for a roomba 521 (similar to a turtlebot1). I cloned this files in my catkin_ws/src/create_autonomy and then I just catkin_make them. All works fine. Now what I found out is that this ROS driver relies on a libcreate library. This library is however build in catkin_ws/devel/src/libcreate.
What I want to do next is create an own package (e.g: catkin_ws/src/roomba_521) and in this package I would like to have some c++ files which somehow include this library, so that I can use functions etc.
(1) That is why I would like to ask how and where do I have to install the libcreate library
(2) How do I have to reference to this library e.g. in a c++ file / just include these files?
Wait, catkin_ws/devel/ only has include, lib, and share. Where is the src? Also how did you link libcreate and create_autonomy?