vcpkg/ports/mnn/vcpkg.json
Xing Ji eea00aaa91
[flatbuffers] upgrade the flatbuffers to v2.0.0 (#18897)
* upgrade the flatbuffers's version

* run `vcpkg x-add-version`

* upgrade flatbuffers to v2.0.0 for mnn

* add new port-version of `mnn` after upgrade the flatbuffers

* fix the port-version of `mnn`

* Update ports/mnn/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update ports/flatbuffers/CONTROL

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* run `vcpkg x-add-version flatbuffers --overwrite-version`

* run `vcpkg x-add-version mnn --overwrite-version`

* regenerate code files by flatc before build

* run `vcpkg x-add-version mnn --overwrite-version`

* add `flatbuffers` in dependencies

* run `vcpkg x-add-version mnn --overwrite-version`

* new port version for mnn

* run `vcpkg x-add-version mnn --overwrite-version` to rebuild

* Update versions/m-/mnn.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update ports/mnn/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* run `vcpkg x-add-version mnn --overwrite-version`

* Add missing quotes.

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
2021-07-22 15:31:44 -07:00

52 lines
1.1 KiB
JSON

{
"name": "mnn",
"version": "1.1.0",
"port-version": 1,
"description": "MNN is a blazing fast, lightweight deep learning framework, battle-tested by business-critical use cases in Alibaba",
"homepage": "https://www.mnn.zone/",
"license": "Apache-2.0",
"supports": "!(arm | uwp | ios | android)",
"dependencies": [
"flatbuffers",
{
"name": "flatbuffers",
"host": true
},
"rapidjson",
"stb"
],
"features": {
"cuda": {
"description": "Enable CUDA API backend",
"dependencies": [
"cuda",
"cudnn"
]
},
"metal": {
"description": "Enable Metal API backend for Apple platforms"
},
"opencl": {
"description": "Enable OpenCL API backend",
"dependencies": [
"opencl"
]
},
"test": {
"description": "Build MNN test programs"
},
"tools": {
"description": "Build MNN tools",
"dependencies": [
"protobuf"
]
},
"vulkan": {
"description": "Enable Vulkan API backend",
"dependencies": [
"vulkan"
]
}
}
}