mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 05:15:11 +08:00
6f979a9017
* [openblas] Support arm64-uwp build * Update version * Merge UWP patches and don't set CMAKE_SYSTEM_PROCESSOR. * Simplify supports clause. --------- Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "openblas",
|
|
"version": "0.3.23",
|
|
"port-version": 1,
|
|
"description": "OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.",
|
|
"homepage": "https://github.com/xianyi/OpenBLAS",
|
|
"license": "BSD-3-Clause",
|
|
"supports": "!arm | arm64 | !uwp",
|
|
"dependencies": [
|
|
{
|
|
"name": "openblas",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "pthread",
|
|
"platform": "!windows & !uwp"
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"dynamic-arch": {
|
|
"description": "Support for multiple targets in a single library",
|
|
"supports": "!windows | mingw"
|
|
},
|
|
"simplethread": {
|
|
"description": "Use simple thread",
|
|
"dependencies": [
|
|
{
|
|
"name": "openblas",
|
|
"features": [
|
|
"threads"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"threads": {
|
|
"description": "Use a threading backend",
|
|
"dependencies": [
|
|
{
|
|
"name": "pthread",
|
|
"platform": "!windows & !uwp"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|