From 35f8f96e19554084d9ebb13857cea0b11170af78 Mon Sep 17 00:00:00 2001 From: Kotaro Uetake <60615504+ktro2828@users.noreply.github.com> Date: Sat, 17 Aug 2024 06:48:20 +0900 Subject: [PATCH] chore: fix a version of rerun to `v0.17.0` (#38) Signed-off-by: ktro2828 --- awviz_common/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awviz_common/CMakeLists.txt b/awviz_common/CMakeLists.txt index 47c6091..068a89d 100644 --- a/awviz_common/CMakeLists.txt +++ b/awviz_common/CMakeLists.txt @@ -23,7 +23,7 @@ ament_auto_find_build_dependencies() # -------- fetch contents -------- include(FetchContent) -FetchContent_Declare(rerun_sdk URL https://github.com/rerun-io/rerun/releases/latest/download/rerun_cpp_sdk.zip) +FetchContent_Declare(rerun_sdk URL https://github.com/rerun-io/rerun/releases/download/0.17.0/rerun_cpp_sdk.zip) FetchContent_MakeAvailable(rerun_sdk) # Ensure rerun_sdk is compiled with -fPIC set_target_properties(rerun_sdk PROPERTIES POSITION_INDEPENDENT_CODE ON)