microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1ae69c0f7aeaab9911cf8ebf86ee92b34dadd26e

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.7.3)
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