Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add upstream changes #5

Merged
merged 5 commits into from
Mar 3, 2023
Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions vectornav/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ endif()
# TODO[DERECK] Move to auto-dep macro
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(rclcpp_action REQUIRED)
find_package(sensor_msgs REQUIRED)
find_package(geometry_msgs REQUIRED)
find_package(vectornav_msgs REQUIRED)
Expand All @@ -30,8 +31,8 @@ add_subdirectory(vnproglib-1.2.0.0/cpp)

# vectornav
add_executable(${PROJECT_NAME} src/vectornav.cc)
ament_target_dependencies(${PROJECT_NAME} rclcpp geometry_msgs vectornav_msgs)
target_link_libraries(${PROJECT_NAME} vncxx)
ament_target_dependencies(${PROJECT_NAME} rclcpp geometry_msgs vectornav_msgs rclcpp_action)
target_link_libraries(${PROJECT_NAME} vncxx )

# vn_sensor_msgs
add_executable(vn_sensor_msgs src/vn_sensor_msgs.cc)
Expand Down
1 change: 1 addition & 0 deletions vectornav/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<buildtool_depend>ament_cmake</buildtool_depend>

<depend>rclcpp</depend>
<depend>rclcpp_action</depend>
<depend>geometry_msgs</depend>
<depend>sensor_msgs</depend>
<depend>vectornav_msgs</depend>
Expand Down
Loading