mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 13:39:08 +08:00
b35f1edc23
* [mnn] add a new port * create a patch, embed copyright * touching install options * [mnn] fix windows install * feature cuda reqires cudnn * [flatbuffers] add patch for TableKeyComparator * update port SHA * [mnn] disable arm support * [mnn] update port SHA * patch creates version config.cmake * run vcpkg_copy_tools for 'tools' feature * [mnn] remove bin when non-Windows * make PREFER_NINJA optional for 'cuda' feature * [mnn] fix wrong macro * [mnn] rename install path to lowercase * [mnn] make 'metal' feature optional * update port SHA * [mnn] apply PR feedback * Move build options into vcpkg_check_features * Download Apache-2.0 licence instead of local file * [mnn] remove code patch for Windows * this will break `mnn[tools]` for `windows` triplet * [mnn] remove code changes in the patch * [mnn] remove version.cmake generation * possibly break osx build with the chnage * Update ports/mnn/portfile.cmake * Update versions/m-/mnn.json * [mnn] apply PR feedback * find_package(CUDNN) in patch * use vcpkg_download_distfile * ONLY_STATIC_LIBRARY for Windows * [mnn] create share folder and move copyright * [mnn] update git-tree SHA * Update ports/mnn/portfile.cmake Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * [mnn] update git-tree SHA Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "mnn",
|
|
"version-string": "1.1.0",
|
|
"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",
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|