Skip to content
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
1 change: 1 addition & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
- [ ] try using ros package to find exports automatically
- [ ] improve the event system
- [ ] move to established db handler lib
- [ ] better bt runner impl
15 changes: 15 additions & 0 deletions capabilities2_executor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,21 @@ ament_target_dependencies(${PROJECT_NAME}
TINYXML2
)

add_library(${PROJECT_NAME}_file SHARED
src/capabilities_file_parser.cpp
)

target_link_libraries(${PROJECT_NAME}_file
${TINYXML2_LIBRARIES}
)

ament_target_dependencies(${PROJECT_NAME}_file
rclcpp
rclcpp_action
capabilities2_msgs
TINYXML2
)

install(DIRECTORY include/
DESTINATION include
)
Expand Down
Loading