start with doc store

This commit is contained in:
2023-10-29 02:21:40 +02:00
commit 0078850db4
6 changed files with 209 additions and 0 deletions

12
external/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,12 @@
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()