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 missed geometry_msgs package #272

Merged
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
7 changes: 7 additions & 0 deletions fuse_core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ install(
if(CATKIN_ENABLE_TESTING)
find_package(roslint REQUIRED)
find_package(rostest REQUIRED)
find_package(geometry_msgs REQUIRED)

# Lint tests
set(ROSLINT_CPP_OPTS "--filter=-build/c++11,-runtime/references")
Expand Down Expand Up @@ -437,6 +438,12 @@ if(CATKIN_ENABLE_TESTING)
${PROJECT_NAME}
${catkin_LIBRARIES}
)
target_include_directories(test_throttled_callback
PRIVATE
include
${catkin_INCLUDE_DIRS}
${geometry_msgs_INCLUDE_DIRS}
)
set_target_properties(test_throttled_callback
PROPERTIES
CXX_STANDARD 14
Expand Down
1 change: 1 addition & 0 deletions fuse_core/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<depend version_gte="1.13.8">rosconsole</depend>
<test_depend>roslint</test_depend>
<test_depend>rostest</test_depend>
<test_depend>geometry_msgs</test_depend>

<export>
<rosdoc config="rosdoc.yaml" />
Expand Down