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(detected_object_validation): add utils to CMakeLists and fix include filename #2133

Merged
merged 1 commit into from
Oct 24, 2022
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
2 changes: 2 additions & 0 deletions perception/detected_object_validation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,12 @@ target_link_libraries(obstacle_pointcloud_based_validator

ament_auto_add_library(object_lanelet_filter SHARED
src/object_lanelet_filter.cpp
src/utils.cpp
)

ament_auto_add_library(object_position_filter SHARED
src/object_position_filter.cpp
src/utils.cpp
)

rclcpp_components_register_node(obstacle_pointcloud_based_validator
Expand Down
2 changes: 1 addition & 1 deletion perception/detected_object_validation/src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include "utils/utils.hpp"

#include <autoware_auto_perception_msgs/msg/ObjectClassification.hpp>
#include <autoware_auto_perception_msgs/msg/object_classification.hpp>

namespace utils
{
Expand Down