ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Please see IDEs wiki page and particularly for Eclipse. If you are on a modern ROS distro with catkin
build system, following will generate Eclipse-project that you can import:
catkin_make --force-cmake -G"Eclipse CDT4 - Unix Makefiles"
The above command will generate one project for all packages you have in your workspace. The project files .project
and .cproject
will be placed inside build
directory of your catkin workspace.
2 | No.2 Revision |
Please see IDEs wiki page and particularly for Eclipse. If you are on a modern ROS distro with catkin
build system, the following will generate Eclipse-project that you can import:
catkin_make --force-cmake -G"Eclipse CDT4 - Unix Makefiles"
The above command will generate one project for all packages you have in your workspace. The project files .project
and .cproject
will be placed inside build
directory of your catkin workspace.