aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/openblas/vcpkg.json
blob: 9a22b2e473782eab809ab23bcd99ea56c7e179f3 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
  "name": "openblas",
  "version": "0.3.29",
  "description": "OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.",
  "homepage": "https://github.com/OpenMathLib/OpenBLAS",
  "license": "BSD-3-Clause",
  "dependencies": [
    {
      "name": "openblas",
      "host": true
    },
    {
      "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 safety for level3 functions",
        "Alternative to serialization of concurrent access to parallelized level3 functions."
      ],
      "dependencies": [
        {
          "name": "openblas",
          "features": [
            "threads"
          ]
        }
      ]
    },
    "threads": {
      "description": "Enable multi-threading",
      "dependencies": [
        {
          "name": "pthreads",
          "platform": "!windows"
        }
      ]
    }
  }
}