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

rosmake or rosbuild?

asked 2011-09-07 08:03:35 -0500

HZ gravatar image

Hi All,

I want to develop some ROS packages which contain libraries for other packages to use, and have some questions about the development process:

1) Should I use rosmake or rosbuild to compile and build my packages? 2) Which files should I modify to create libraries (.so files) instead of executables?

Thanks, HZ

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
4

answered 2011-09-07 08:39:33 -0500

Mac gravatar image

From the rosbuild wiki page:

"To build packages, use rosmake."

rosbuild is the name of the library of build-support tools; rosmake is the command you run to actually build stuff. Assuming you're developing your code just for ROS use (as distinct from implementing a ROS wrapper around some library that needn't be / isn't ROS-aware), you should do everything in CMakeLists.txt in your package's root directory. (Everything except setting the exports; that's in manifest.xml).

If you want to compile libraries, use the rosbuild_add_library macro; see the rosbuild wikipage for some examples, and the default CMakeLists.txt that roscreate-pkg gives you.

edit flag offensive delete link more

Comments

Thanks a lot. It seems I asked a silly question... type in "rosbuild" in terminal, and get: "rosbuild: command not found"
HZ gravatar image HZ  ( 2011-09-07 10:12:01 -0500 )edit
If you like my answer, accept is (there's a checkbox). That way, more karma for me!
Mac gravatar image Mac  ( 2011-09-07 14:23:27 -0500 )edit

Question Tools

Stats

Asked: 2011-09-07 08:03:35 -0500

Seen: 1,092 times

Last updated: Sep 07 '11