catkin_make_isolated builds tf after a package that requires tf?
I am building ROS on a Raspberry Pi 3 using catkin_make_isolated. The full command is sudo ./src/catkin/bin/catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release --install-space /opt/ros/indigo -j2
.
I have a package that requires tf, but when using the above command, tf is built after the package, and so the whole make fails.
When building without the new package, the make finishes fine.
Any ideas? Thanks
Please include the
CMakeLists.txt
andpackage.xml
of the package that "requires tf". Make sure to remove all the boilerplate comments from them though (especiallyCMakeList.txt
).