add object store and provide to plugins

This commit is contained in:
2024-04-12 22:53:40 +02:00
parent 4b7ef79f38
commit 71d93329c5
3 changed files with 16 additions and 0 deletions

View File

@@ -38,6 +38,15 @@ if (NOT TARGET solanaceae_plugin)
FetchContent_MakeAvailable(solanaceae_plugin)
endif()
if (NOT TARGET solanaceae_object_store)
FetchContent_Declare(solanaceae_object_store
GIT_REPOSITORY https://github.com/Green-Sky/solanaceae_object_store.git
GIT_TAG master
EXCLUDE_FROM_ALL
)
FetchContent_MakeAvailable(solanaceae_object_store)
endif()
add_subdirectory(./toxcore)
if (NOT TARGET solanaceae_toxcore)