Can't Find My Include
Hello all, I have two packages: OpenRAVEROSInterp and myTestROS.
OpenRAVEROSInterp is a little package I developed which connects OpenRAVE and ROS. It works well and uses a file named ROSRobot.h which contains subscriptions/services to interact with robots in OpenRAVE. It is stored in
rospackages/OpenRAVEROSInterp/include/OpenRAVEROSInterp/ROSRobot.h
My other package myTestROS is attempting to use ROSRobot.h (just for fun). It's manifest.xml has
<depend package="OpenRAVEROSInterp"/>
When I run rosmake, I get...
...workspace/rospackages/myTestROS/src/TestClass.cpp:36:40: error: OpenRAVEROSInterp/ROSRobot.h: No such file or directory
Where line 36 is:
#include <OpenRAVEROSInterp/ROSRobot.h>
Could anyone off any suggestions? Thank you.