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

fix(had_map_utils): modify build error in rolling #782

Merged
merged 2 commits into from
Apr 25, 2022
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
6 changes: 5 additions & 1 deletion common/had_map_utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,13 @@ ament_auto_add_library(${PROJECT_NAME} SHARED
src/had_map_query.cpp
src/had_map_visualization.cpp)

# Disable warnings due to external dependencies (Eigen)
# Disable warnings due to external dependencies
get_target_property(lanelet2_core_INCLUDE_DIR
lanelet2_core::lanelet2_core INTERFACE_INCLUDE_DIRECTORIES
)
target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC
${EIGEN3_INCLUDE_DIR}
${lanelet2_core_INCLUDE_DIR}
${rclcpp_INCLUDE_DIRS}
)

Expand Down