ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 2013-06-18 10:00:01 -0500

joq gravatar image

You need this in your package.xml:

<build_depend>rostest</build_depend>

In your CMakeLists.txt add it to your catkin components:

find_package(catkin REQUIRED COMPONENTS rostest ...)
click to hide/show revision 2
mention need for target link libraries

You need this in your package.xml:

<build_depend>rostest</build_depend>

In your CMakeLists.txt add it to your catkin components:

find_package(catkin REQUIRED COMPONENTS rostest ...)

Update: regarding your next problem, target_link_libraries() is pretty much required for nearly every catkin build target.

You need this in your package.xml:

<build_depend>rostest</build_depend>

In your CMakeLists.txt add it to your catkin components:

find_package(catkin REQUIRED COMPONENTS rostest ...)

Update: regarding your next problem, target_link_libraries() is pretty much required for nearly every catkin build target.