microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
cmake/externals/dlib.cmake
12lines · modecode
| 1 | FetchContent_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 | |
| 8 | FetchContent_GetProperties(dlib) |
| 9 | if(NOT dlib_POPULATED) |
| 10 | # Fetch the content using previously declared details |
| 11 | FetchContent_Populate(dlib) |
| 12 | endif() |
| 13 | |