-
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 nav2_system_tests to modern CMake idioms. (#4638)
Signed-off-by: Chris Lalancette <[email protected]>
- Loading branch information
1 parent
226b196
commit 8990c05
Showing
18 changed files
with
230 additions
and
224 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,16 +1,14 @@ | ||
find_package(Boost COMPONENTS system filesystem REQUIRED) | ||
|
||
ament_add_gtest(test_behavior_tree_node | ||
test_behavior_tree_node.cpp | ||
server_handler.cpp | ||
) | ||
|
||
ament_target_dependencies(test_behavior_tree_node | ||
${dependencies} | ||
) | ||
|
||
target_include_directories(test_behavior_tree_node PUBLIC ${Boost_INCLUDE_DIRS}) | ||
target_link_libraries(test_behavior_tree_node | ||
${Boost_FILESYSTEM_LIBRARY} | ||
${Boost_SYSTEM_LIBRARY} | ||
ament_index_cpp::ament_index_cpp | ||
behaviortree_cpp::behaviortree_cpp | ||
${geometry_msgs_TARGETS} | ||
nav2_behavior_tree::nav2_behavior_tree | ||
${nav2_msgs_TARGETS} | ||
nav2_util::nav2_util_core | ||
rclcpp::rclcpp | ||
tf2_ros::tf2_ros | ||
) |
Oops, something went wrong.