kanjivg-tools/CMake/simdjson.cmake

13 lines
256 B
CMake

if(NOT TARGET simdjson)
include(FetchContent)
FetchContent_Declare(
simdjson
GIT_REPOSITORY https://code.3011.io/Mirrors/simdjson
GIT_TAG v3.13.0
)
FetchContent_MakeAvailable(
simdjson
)
endif()