vcpkg/ports/ginkgo/vcpkg.json
Tobias Ribizel e61900cc51
[ginkgo] Update version to 1.7.0 (#35028)
* [ginkgo] add version 1.7.0

* update version
2023-11-14 13:04:50 -08:00

37 lines
869 B
JSON

{
"name": "ginkgo",
"version-semver": "1.7.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",
"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"
]
},
"mpi": {
"description": "Build the distributed MPI backend of Ginkgo",
"dependencies": [
"mpi"
]
},
"openmp": {
"description": "Build the OpenMP backend of Ginkgo",
"supports": "mingw | !windows"
}
}
}