microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9e7f8e5b1dd903dfdbb526fdb68db0ef83d9a7e8

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