microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
06c902253fb855b144ad1f65c0b7a6120d1fc919

Branches

Tags

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

Clone

HTTPS

Download ZIP

cmake/externals/dlib.cmake

14lines · modepreview

FetchContent_Declare(dlib
    GIT_REPOSITORY https://github.com/davisking/dlib.git
    GIT_TAG        v19.22
)

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