├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── mcap-config.cmake.in └── src ├── CMakeLists.txt └── lib.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olympus-robotics/mcap_builder/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olympus-robotics/mcap_builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olympus-robotics/mcap_builder/HEAD/README.md -------------------------------------------------------------------------------- /cmake/mcap-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olympus-robotics/mcap_builder/HEAD/cmake/mcap-config.cmake.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olympus-robotics/mcap_builder/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olympus-robotics/mcap_builder/HEAD/src/lib.cpp --------------------------------------------------------------------------------