Skip to content

Commit

Permalink
Merge pull request #19 from rerun-io/emilk/updat-rerun
Browse files Browse the repository at this point in the history
Update to Rerun 0.12
  • Loading branch information
emilk authored Feb 8, 2024
2 parents 0098d17 + 4b258df commit 2b3fe9b
Show file tree
Hide file tree
Showing 5 changed files with 167 additions and 3,868 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if(NOT DEFINED CMAKE_CXX_STANDARD)
endif()

include(FetchContent)
FetchContent_Declare(rerun_sdk URL https://build.rerun.io/commit/746dbf3/rerun_cpp_sdk.zip) # TODO: 2023-11-28. Update to latest commit.
FetchContent_Declare(rerun_sdk URL https://github.com/rerun-io/rerun/releases/download/0.12.0/rerun_cpp_sdk.zip)
FetchContent_MakeAvailable(rerun_sdk)

find_package(Eigen3 REQUIRED)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ If you choose not to use pixi, you will need to install a few things yourself be
The Rerun C++ SDK works by connecting to an awaiting Rerun Viewer over TCP.

If you need to install the viewer, follow the [installation guide](https://www.rerun.io/docs/getting-started/installing-viewer). Two of the more common ways to install the Rerun are:
* Via cargo: `cargo install rerun-cli`
* Via pip: `pip install rerun-sdk`
* Via cargo: `cargo install rerun-cli@0.12.0`
* Via pip: `pip install rerun-sdk==0.12.0`

After you have installed it, you should be able to type `rerun` in your terminal to start the viewer.

Expand Down Expand Up @@ -58,7 +58,7 @@ cmake --build build
```
Instead of building via CMake you can also open `build/rerun_external_cpp_proj.sln` in Visual Studio and build & run from there.

Then run the binary with
Then run the binary with
```cmd
build\RelWithDebInfo\rerun_ext_example.exe
```
Expand Down
Loading

0 comments on commit 2b3fe9b

Please sign in to comment.