microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1f0c76cefaa9359b9fc74ff4b9ed93214486205a

Branches

Tags

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

Clone

HTTPS

Download ZIP

cmake/externals/dlib.cmake

12lines · modepreview

FetchContent_Declare(dlib
    GIT_REPOSITORY https://github.com/davisking/dlib.git
    # there is non an official tag which supports STFT,
    # choose a relatively stable commit id for that.
    GIT_TAG        a12824d42584e292ecb3bad05c4b32c2015a7b89
)

FetchContent_GetProperties(dlib)
if(NOT dlib_POPULATED)
  # Fetch the content using previously declared details
  FetchContent_Populate(dlib)
endif()