25 lines
1.0 KiB
CMake
25 lines
1.0 KiB
CMake
cmake_minimum_required(VERSION 3.16...3.27)
|
|
|
|
# If you use the example outside of the Rerun SDK you need to specify
|
|
# where the rerun_c build is to be found by setting the `RERUN_CPP_URL` variable.
|
|
# This can be done by passing `-DRERUN_CPP_URL=<path to rerun_sdk_cpp zip>` to cmake.
|
|
if(DEFINED RERUN_REPOSITORY)
|
|
add_executable(example_custom_collection_adapter main.cpp)
|
|
rerun_strict_warning_settings(example_custom_collection_adapter)
|
|
else()
|
|
project(example_custom_collection_adapter LANGUAGES CXX)
|
|
|
|
add_executable(example_custom_collection_adapter main.cpp)
|
|
|
|
# Set the path to the rerun_c build.
|
|
set(RERUN_CPP_URL "https://github.com/rerun-io/rerun/releases/latest/download/rerun_cpp_sdk.zip" CACHE STRING "URL to the rerun_cpp zip.")
|
|
|
|
# Download the rerun_sdk
|
|
include(FetchContent)
|
|
FetchContent_Declare(rerun_sdk URL ${RERUN_CPP_URL})
|
|
FetchContent_MakeAvailable(rerun_sdk)
|
|
endif()
|
|
|
|
# Link against rerun_sdk.
|
|
target_link_libraries(example_custom_collection_adapter PRIVATE rerun_sdk)
|