vcpkg/ports/openblas/vcpkg.json
NancyLi1013 c527fabf35
[openblas] Fix the macro collision with Windows 10 SDK (#18530)
* [openblas] Fix the macro collision with Windows 10 SDK

* Update version files

* Update feature thread as threads in vcpkg.json

* Update versions/o-/openblas.json
2021-06-21 13:32:55 -07:00

33 lines
683 B
JSON

{
"name": "openblas",
"version": "0.3.10",
"port-version": 2,
"description": "OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.",
"homepage": "https://github.com/xianyi/OpenBLAS",
"default-features": [
"threads"
],
"features": {
"simplethread": {
"description": "Use simple thread",
"dependencies": [
{
"name": "openblas",
"features": [
"threads"
]
}
]
},
"threads": {
"description": "Use a threading backend",
"dependencies": [
{
"name": "pthread",
"platform": "!windows & !uwp"
}
]
}
}
}