vcpkg/ports/ncnn/vcpkg.json
Park DongHa 75d28e06a5
[ncnn] Support Vulkan feature (#38197)
Resolve #35350

- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [ ] SHA512s are updated for each updated download.
- [ ] The "supports" clause reflects platforms that may be fixed by this
new version.
- [ ] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.
- [ ] Any patches that are no longer applied are deleted from the port's
directory.
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
2024-04-16 09:35:11 -04:00

29 lines
582 B
JSON

{
"name": "ncnn",
"version": "20240102",
"port-version": 1,
"description": "ncnn is a high-performance neural network inference computing framework.",
"homepage": "https://github.com/Tencent/ncnn",
"license": "BSD-3-Clause",
"supports": "!(windows & arm)",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"vulkan": {
"description": "Enable Vulkan support",
"dependencies": [
"glslang",
"vulkan"
]
}
}
}