vcpkg/ports/matio/vcpkg.json
miyanyan 421579b6e6
[matio] update to 1.5.26 (#35067)
* [matio] update to 1.5.26

* [matio] update versions
2023-11-13 10:51:17 -08:00

60 lines
1.2 KiB
JSON

{
"name": "matio",
"version": "1.5.26",
"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": [
"hdf5",
"zlib"
],
"features": {
"extended-sparse": {
"description": "Enable extended sparse matrix data types not supported in MATLAB"
},
"hdf5": {
"description": "Check for HDF5 library",
"dependencies": [
{
"name": "hdf5",
"default-features": false
},
{
"name": "matio",
"default-features": false,
"features": [
"zlib"
]
}
]
},
"mat73": {
"description": "Enable support for version 7.3 MAT files",
"dependencies": [
{
"name": "matio",
"default-features": false,
"features": [
"hdf5"
]
}
]
},
"pic": {
"description": "Enable position-independent code (PIC), i.e., compilation with the -fPIC flag"
},
"zlib": {
"description": "Check for zlib library",
"dependencies": [
"zlib"
]
}
}
}