solanaceae_crdtnotes/external/CMakeLists.txt

13 lines
272 B
CMake
Raw Normal View History

2023-10-29 02:21:40 +02:00
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)
include(FetchContent)
if (NOT TARGET crdt_version3)
FetchContent_Declare(crdt_version3
GIT_REPOSITORY https://github.com/Green-Sky/green_crdt.git
GIT_TAG master
)
FetchContent_MakeAvailable(crdt_version3)
endif()