An open API service indexing awesome lists of open source software.

https://github.com/mlomb/ros-idl-serde

C++ ROS messages serde without ROS runtime, only fastcdr
https://github.com/mlomb/ros-idl-serde

Last synced: 25 days ago
JSON representation

C++ ROS messages serde without ROS runtime, only fastcdr

Awesome Lists containing this project

README

          

To generate:

```
generate.sh
```

To use:

```cmake
include(FetchContent)

FetchContent_Declare(
ros_idl_serde
GIT_REPOSITORY https://github.com/mlomb/ros-idl-serde.git
GIT_TAG main
)

FetchContent_MakeAvailable(ros_idl_serde)

target_link_libraries(your_app ros_idl_serde)
```

```cpp
#include
```