microsoft/onnxruntime-extensions

Public

mirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0647ce6d14b95209220714685d83659bc0d53aad

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

cmake/externals/json.cmake

9lines · modecode

1FetchContent_Declare(json
2 GIT_REPOSITORY https://github.com/nlohmann/json.git
3 GIT_TAG v3.10.5)
4
5FetchContent_GetProperties(json)
6if(NOT json_POPULATED)
7 FetchContent_Populate(json)
8 add_subdirectory(${json_SOURCE_DIR} ${json_BINARY_DIR} EXCLUDE_FROM_ALL)
9endif()
10