C++ SDK
If you're using CMake you can add the SDK to your project using FetchContent:
include(FetchContent)
FetchContent_Declare(rerun_sdk URL
https://github.com/rerun-io/rerun/releases/latest/download/rerun_cpp_sdk.zip)
FetchContent_MakeAvailable(rerun_sdk)For more details see Build & Distribution in the C++ reference documentation.
You'll additionally need to install the Viewer.
Next steps next-steps
To start getting your own data streamed to the viewer, check out the C++ quick start guide.