Skip to content

Commit 2b3fe9b

Browse files
authored
Merge pull request #19 from rerun-io/emilk/updat-rerun
Update to Rerun 0.12
2 parents 0098d17 + 4b258df commit 2b3fe9b

File tree

5 files changed

+167
-3868
lines changed

5 files changed

+167
-3868
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if(NOT DEFINED CMAKE_CXX_STANDARD)
99
endif()
1010

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

1515
find_package(Eigen3 REQUIRED)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ If you choose not to use pixi, you will need to install a few things yourself be
2626
The Rerun C++ SDK works by connecting to an awaiting Rerun Viewer over TCP.
2727

2828
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:
29-
* Via cargo: `cargo install rerun-cli`
30-
* Via pip: `pip install rerun-sdk`
29+
* Via cargo: `cargo install rerun-cli@0.12.0`
30+
* Via pip: `pip install rerun-sdk==0.12.0`
3131

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

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

61-
Then run the binary with
61+
Then run the binary with
6262
```cmd
6363
build\RelWithDebInfo\rerun_ext_example.exe
6464
```

0 commit comments

Comments
 (0)