catkin optional build dependency
I'm trying to compile hector_quadrotor using catkin_make, but I'm running into this issue :
http://github.com/tu-darmstadt-ros-pk...
The main problem is that hector_pose_estimation uses the hector_uav_msgs package only if it is available at build time (by find_package).
But hector_pose_estimation is usable without hector_uav_msgs, so it can't be a build dependency.
And because hector_uav_msgs is not a build dep of hector_pose_estimation, catkin_make will try to build hector_pose_estimation before hector_uav_msgs.
Is there a trick to declare optional build dependencies, or to force the dependency to build hector_uav_msgs prior to hector_pose_estimation ?