mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 07:29:11 +08:00
c527fabf35
* [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
33 lines
683 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|