vcpkg/ports/ginkgo/vcpkg.json

37 lines
869 B
JSON
Raw Normal View History

{
"name": "ginkgo",
2024-07-06 01:32:49 +08:00
"version-semver": "1.8.0",
"description": "Ginkgo is a high-performance linear algebra library for manycore systems, with a focus on sparse solution of linear systems.",
"homepage": "https://github.com/ginkgo-project/ginkgo",
"license": "BSD-3-Clause",
2023-10-14 01:55:58 +08:00
"supports": "!(x86 | android)",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"cuda": {
"description": "Build the CUDA backend of Ginkgo",
"dependencies": [
"cuda"
]
},
2023-10-14 01:55:58 +08:00
"mpi": {
"description": "Build the distributed MPI backend of Ginkgo",
"dependencies": [
"mpi"
]
},
"openmp": {
"description": "Build the OpenMP backend of Ginkgo",
"supports": "mingw | !windows"
}
}
}