microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0f45fef2d9301cc5b479b4df4bd8ecbaac93e1e6

Branches

Tags

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

Clone

HTTPS

Download ZIP

cmake/externals/dlib.cmake

12lines · modecode

1FetchContent_Declare(dlib
2 GIT_REPOSITORY https://github.com/davisking/dlib.git
3 # there is non an official tag which supports STFT,
4 # choose a relatively stable commit id for that.
5 GIT_TAG a12824d42584e292ecb3bad05c4b32c2015a7b89
6)
7
8FetchContent_GetProperties(dlib)
9if(NOT dlib_POPULATED)
10 # Fetch the content using previously declared details
11 FetchContent_Populate(dlib)
12endif()
13