ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You should notice that when you use catkin_make command for the first time, the build
and devel
folders are created, similarly when using catkin_make_isolated
, it creates folders name build_isolated
and devel_isolated
.
After using catkin_make_isolated (for building non-ros packages along with ros packages) you won't be able to use catkin_make
.
And to locate the node, you would have to go into your workspace and then type:
source devel_isolated/setup.bash
After this your problem should be solved.