Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions laser_scan_matcher/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set( ROS_CXX_DEPENDENCIES
nav_msgs)

# Find catkin and all required ROS components
find_package(catkin REQUIRED COMPONENTS ${ROS_CXX_DEPENDENCIES} rostest)
find_package(catkin REQUIRED COMPONENTS ${ROS_CXX_DEPENDENCIES})
find_package(PCL REQUIRED QUIET)

# Find csm project
Expand Down Expand Up @@ -68,5 +68,8 @@ install(FILES laser_scan_matcher_nodelet.xml
install(DIRECTORY demo
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} )

add_rostest(test/run.test)
add_rostest(test/covariance.test)
if(CATKIN_ENABLE_TESTING)
find_package(rostest)
add_rostest(test/run.test)
add_rostest(test/covariance.test)
endif()