vcpkg/ports/blas/vcpkg.json
Billy O'Neal 59aeb8fe8f
[blas] Resolve baseline problems (#38467)
Extended from that originally authored by @Cheney-W in
https://github.com/microsoft/vcpkg/pull/38097
2024-05-23 00:21:15 -07:00

27 lines
685 B
JSON

{
"$comment": "Keep the platform expressions in sync with the wrappers installed by the portfiles!",
"name": "blas",
"version-date": "2023-04-14",
"port-version": 1,
"description": "Metapackage for packages which provide BLAS",
"license": null,
"supports": "!(android & arm32) & !(android & x64)",
"dependencies": [
{
"name": "lapack-reference",
"features": [
"cblas"
],
"platform": "!osx & !ios & !uwp & !(windows & arm) & windows & static"
},
{
"name": "openblas",
"platform": "!osx & !ios & (uwp | (windows & arm) | !windows | !static)"
},
{
"name": "vcpkg-cmake",
"host": true
}
]
}