diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/darknet/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/darknet/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/darknet/vcpkg.json | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/vcpkg/ports/darknet/vcpkg.json b/vcpkg/ports/darknet/vcpkg.json new file mode 100644 index 0000000..a5dc099 --- /dev/null +++ b/vcpkg/ports/darknet/vcpkg.json @@ -0,0 +1,82 @@ +{ + "name": "darknet", + "version-date": "2024-10-10", + "description": "Darknet is an open source neural network framework written in C and CUDA. You only look once (YOLO) is a state-of-the-art, real-time object detection system, best example of darknet functionalities.", + "homepage": "https://github.com/alexeyab/darknet", + "license": null, + "dependencies": [ + { + "name": "getopt", + "platform": "windows & !mingw" + }, + "pthreads", + "stb", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "features": { + "cuda": { + "description": "Build darknet with support for CUDA", + "dependencies": [ + "cuda" + ] + }, + "cudnn": { + "description": "Build darknet with support for cuDNN", + "dependencies": [ + "cuda", + "cudnn" + ] + }, + "full": { + "description": "Build darknet fully featured", + "dependencies": [ + { + "name": "darknet", + "features": [ + "cuda", + "cudnn", + "opencv-cuda" + ] + } + ] + }, + "opencv-base": { + "description": "Build darknet with support for latest version of OpenCV", + "dependencies": [ + { + "name": "opencv", + "features": [ + "ffmpeg" + ] + } + ] + }, + "opencv-cuda": { + "description": "Build darknet with support for latest version of CUDA-enabled OpenCV", + "dependencies": [ + { + "name": "darknet", + "features": [ + "cuda" + ] + }, + { + "name": "opencv", + "features": [ + "contrib", + "cuda", + "dnn", + "ffmpeg" + ] + } + ] + } + } +} |