vcpkg/ports/dlib/vcpkg.json
Nursultan Zarlyk e19fc496c7
[Dlib] Enable arm64-windows (#26778)
* Add arm64-windows support

* Update port version

* Update dlib version

* Add dlib:arm64-windows in ci.baseline

Co-authored-by: Nursultan Zarlyk <nzarlyk@microsoft.com>
2022-09-15 12:33:44 -07:00

48 lines
925 B
JSON

{
"name": "dlib",
"version": "19.24",
"port-version": 2,
"description": "Modern C++ toolkit containing machine learning algorithms and tools for creating complex software in C++",
"homepage": "https://github.com/davisking/dlib",
"license": "BSL-1.0",
"dependencies": [
"blas",
"lapack",
"libjpeg-turbo",
"libpng",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"fftw3",
"sqlite3"
],
"features": {
"cuda": {
"description": "CUDA support for dlib",
"dependencies": [
"cuda",
"cudnn"
]
},
"fftw3": {
"description": "fftw3 support for dlib",
"dependencies": [
"fftw3"
]
},
"sqlite3": {
"description": "sqlite3 support for dlib",
"dependencies": [
"sqlite3"
]
}
}
}