I've been messing around with my catkin workspace in an attempt to get QtCreator working with ROS (Indigo, Ubuntu 14.04), and somewhere along the way I've messed up something important. So now, if I run:
$ source /opt/ros/indigo/setup.bash
$ cd repo/workspace/
$ catkin_make
Everything builds properly, but if I source my workspace between sourcing the ROS distro and running `catkin_make` then the command fails. I.e. if I run:
$ source /opt/ros/indigo/setup.bash
$ source /home/user/repo/workspace/devel/setup.bash
$ cd repo/workspace/
$ catkin_make
Then I get the following error
catkin_make: command not found
Does anyone know why this is the case? Obviously, there is something wrong with my setup but I don't understand enough about CMake to figure it out. I'm also not sure what diagnostic info I need to post here to help others, so if there is something specific about my setup that I should post here, let me know. Thanks in advance for any help or advice.
↧