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