-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch dwb_critics to modern CMake idioms. (#4611)
Signed-off-by: Chris Lalancette <[email protected]>
- Loading branch information
1 parent
4d2c2c6
commit 5321e00
Showing
3 changed files
with
79 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,35 @@ | ||
ament_add_gtest(prefer_forward_tests prefer_forward_test.cpp) | ||
target_link_libraries(prefer_forward_tests dwb_critics) | ||
target_link_libraries(prefer_forward_tests | ||
dwb_critics | ||
nav2_costmap_2d::nav2_costmap_2d_core | ||
nav2_util::nav2_util_core | ||
rclcpp::rclcpp | ||
) | ||
|
||
ament_add_gtest(base_obstacle_tests base_obstacle_test.cpp) | ||
target_link_libraries(base_obstacle_tests dwb_critics) | ||
target_link_libraries(base_obstacle_tests | ||
dwb_critics | ||
dwb_core::dwb_core | ||
rclcpp::rclcpp | ||
) | ||
|
||
ament_add_gtest(obstacle_footprint_tests obstacle_footprint_test.cpp) | ||
target_link_libraries(obstacle_footprint_tests dwb_critics) | ||
target_link_libraries(obstacle_footprint_tests | ||
dwb_critics | ||
dwb_core::dwb_core | ||
rclcpp::rclcpp | ||
) | ||
|
||
ament_add_gtest(alignment_util_tests alignment_util_test.cpp) | ||
target_link_libraries(alignment_util_tests dwb_critics) | ||
target_link_libraries(alignment_util_tests | ||
dwb_critics | ||
dwb_core::dwb_core | ||
rclcpp::rclcpp | ||
) | ||
|
||
ament_add_gtest(twirling_tests twirling_test.cpp) | ||
target_link_libraries(twirling_tests dwb_critics) | ||
target_link_libraries(twirling_tests | ||
dwb_critics | ||
dwb_core::dwb_core | ||
rclcpp::rclcpp | ||
) |