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

feat: componentize-system_error_monitor #7009

Merged
merged 6 commits into from
May 15, 2024
Merged
Changes from 2 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: 5 additions & 2 deletions system/system_error_monitor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ project(system_error_monitor)
find_package(autoware_cmake REQUIRED)
autoware_package()

ament_auto_add_executable(${PROJECT_NAME}
src/system_error_monitor_node.cpp
ament_auto_add_library(system_error_monitor_component SHARED
src/system_error_monitor_core.cpp
)

rclcpp_components_register_node(system_error_monitor_component
PLUGIN "AutowareErrorMonitor"
EXECUTABLE system_error_monitor)

ament_auto_package(INSTALL_TO_SHARE
launch
config
Expand Down
Loading