aboutsummaryrefslogtreecommitdiff
path: root/ports/openblas/vcpkg.json
blob: e0206c35c26925666b50e3b840f3a3ef131527c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  "name": "openblas",
  "version": "0.3.15",
  "description": "OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.",
  "homepage": "https://github.com/xianyi/OpenBLAS",
  "dependencies": [
    {
      "name": "pthread",
      "platform": "!windows & !uwp"
    }
  ],
  "features": {
    "dynamic-arch": {
      "description": "Support for multiple targets in a single library"
    },
    "simplethread": {
      "description": "Use simple thread",
      "dependencies": [
        {
          "name": "openblas",
          "features": [
            "threads"
          ]
        }
      ]
    },
    "threads": {
      "description": "Use a threading backend",
      "dependencies": [
        {
          "name": "pthread",
          "platform": "!windows & !uwp"
        }
      ]
    }
  }
}