aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/lapack-reference/vcpkg.json
blob: 15cb471439693591ac190607baa87d5281b92658 (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": "lapack-reference",
  "version": "3.12.1",
  "port-version": 1,
  "description": "LAPACK - Linear Algebra PACKage",
  "homepage": "https://netlib.org/lapack/",
  "license": "BSD-3-Clause-Open-MPI",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    },
    {
      "name": "vcpkg-gfortran",
      "platform": "windows & !mingw"
    }
  ],
  "default-features": [
    "blas-select"
  ],
  "features": {
    "blas-select": {
      "description": "Use external optimized BLAS",
      "dependencies": [
        {
          "name": "lapack-reference",
          "default-features": false,
          "features": [
            "noblas"
          ],
          "platform": "!windows | !static | mingw"
        }
      ]
    },
    "cblas": {
      "description": "Builds CBLAS"
    },
    "noblas": {
      "description": "Use external optimized BLAS",
      "supports": "!windows | !static",
      "dependencies": [
        "blas"
      ]
    }
  }
}