Skip to content

Commit d5d6292

Browse files
Merge pull request #60 from TomCC7/rosgraph_monitor
feat: add rosgraph monitor
2 parents b7be6d5 + dab05d0 commit d5d6292

3 files changed

Lines changed: 22 additions & 1 deletion

File tree

conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ c_stdlib:
5454
- vs # [win]
5555
c_stdlib_version: # [unix]
5656
- 2.17 # [linux]
57-
- 10.13 # [osx and x86_64]
57+
- 11.0 # [osx and x86_64]
5858
- 11.0 # [osx and arm64]
5959
cxx_compiler:
6060
- gxx # [linux]
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
diff --git a/CMakeLists.txt b/CMakeLists.txt
2+
index 8dbdc3b..c2fba66 100644
3+
--- a/CMakeLists.txt
4+
+++ b/CMakeLists.txt
5+
@@ -31,6 +31,7 @@ find_package(rmw REQUIRED)
6+
find_package(rosgraph_monitor_msgs REQUIRED)
7+
find_package(rosidl_runtime_cpp REQUIRED)
8+
find_package(rosidl_typesupport_cpp REQUIRED)
9+
+find_package(Threads REQUIRED)
10+
11+
add_library(${PROJECT_NAME} SHARED
12+
src/shim.cpp
13+
@@ -46,6 +47,7 @@ target_link_libraries(${PROJECT_NAME} PUBLIC
14+
rmw::rmw
15+
rosidl_runtime_cpp::rosidl_runtime_cpp
16+
rosidl_typesupport_cpp::rosidl_typesupport_cpp
17+
+ Threads::Threads
18+
${rosgraph_monitor_msgs_TARGETS}
19+
)

vinca.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@ packages_select_by_deps:
166166

167167
- libcamera
168168

169+
- rosgraph_monitor
170+
169171
# These packages are currently only build on Linux,
170172
# as trying to build them in the past on macos or Windows resulted in errors
171173
- if: linux

0 commit comments

Comments
 (0)