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

Sometime you will find more executables in the same package. Of course they are compiled with different name_file.cpp files. Look into you CMakeLists.txt and be sure you don t have 2 times the same add_executable. For istance:

add_executable( my_robot src/main_a.cpp )
add_executable( my_robot src/main_b.cpp )   <= this is redundant with the line above

Hope it helps