mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-03 02:19:00 +08:00
297ff7ba3e
* Consolidate netcdf-c ZLIB patching
* Update to 4.8.1, refresh patches
* Resolve parameter warning
* Decouple netcdf-4 feature from hdf5
* Expose NCZarr features
* Break vcpkg CI cascade
* Fix hdf5 szip support detection for static linkage
* Allow curl, hdf5, libzip with minimal dependencies
* Disable fatal warnings on uwp
* Update versions
* Fix libzip dependency
* Fix and simplify szip config patch
* Revert nczarr-s3 feature for now
* Update versions
* [skip actions] CI
* [skip actions] Debug ci failure
* Revert "[skip actions] Debug ci failure"
This reverts commit 03f3d52623
.
61 lines
1.1 KiB
JSON
61 lines
1.1 KiB
JSON
{
|
|
"name": "hdf5",
|
|
"version": "1.12.1",
|
|
"port-version": 1,
|
|
"description": "HDF5 is a data model, library, and file format for storing and managing data",
|
|
"homepage": "https://www.hdfgroup.org/downloads/hdf5/",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"szip",
|
|
"zlib"
|
|
],
|
|
"features": {
|
|
"cpp": {
|
|
"description": "Builds cpp lib"
|
|
},
|
|
"fortran": {
|
|
"description": "Build with fortran"
|
|
},
|
|
"parallel": {
|
|
"description": "parallel support for HDF5",
|
|
"dependencies": [
|
|
"mpi"
|
|
]
|
|
},
|
|
"szip": {
|
|
"description": "Build with szip",
|
|
"dependencies": [
|
|
"szip"
|
|
]
|
|
},
|
|
"threadsafe": {
|
|
"description": "thread safety for HDF5",
|
|
"dependencies": [
|
|
"pthreads"
|
|
]
|
|
},
|
|
"tools": {
|
|
"description": "Build hdf tools"
|
|
},
|
|
"utils": {
|
|
"description": "Build HDF5 Utils"
|
|
},
|
|
"zlib": {
|
|
"description": "Build with zlib",
|
|
"dependencies": [
|
|
"zlib"
|
|
]
|
|
}
|
|
}
|
|
}
|