microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
b708aeaaf44416bba84b87206fb550196fc60d5a

Branches

Tags

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

Clone

HTTPS

Download ZIP

cmake/externals/dlib.cmake

14lines · modecode

1FetchContent_Declare(dlib
2 GIT_REPOSITORY https://github.com/davisking/dlib.git
3 GIT_TAG v19.22
4)
5
6if (WIN32)
7 FetchContent_MakeAvailable(dlib)
8else()
9 FetchContent_GetProperties(dlib)
10 if(NOT dlib_POPULATED)
11 # Fetch the content using previously declared details
12 FetchContent_Populate(dlib)
13 endif()
14endif()
15