aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/matio/vcpkg.json
blob: c0f5910b007e949655812911259dfb0e734037c4 (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
{
  "name": "matio",
  "version": "1.5.28",
  "description": "MATLAB MAT File I/O Library",
  "homepage": "https://github.com/tbeu/matio",
  "license": "BSD-2-Clause",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    }
  ],
  "default-features": [
    "mat73",
    "zlib"
  ],
  "features": {
    "extended-sparse": {
      "description": "Enable extended sparse matrix data types not supported in MATLAB"
    },
    "mat73": {
      "description": "Enable support for version 7.3 MAT files using the HDF5 library",
      "dependencies": [
        {
          "name": "hdf5",
          "default-features": false
        },
        {
          "name": "matio",
          "default-features": false,
          "features": [
            "zlib"
          ]
        }
      ]
    },
    "pic": {
      "description": "Enable position-independent code (PIC), i.e., compilation with the -fPIC flag"
    },
    "zlib": {
      "description": "Check for zlib library",
      "dependencies": [
        "zlib"
      ]
    }
  }
}