vcpkg/ports/hdf5/vcpkg.json
Kai Pastor cccfe836db
[gdal] Add features for hdf5, netcdf, postgresql (#21231)
* Revise configuration, avoid hidden dependencies

* Expose hdf5 and netcdf feature, fix static linkage

* Fix hdf5 pc files

* Add spatialite flag

* Update versions

* Expose feature platform dependencies

* Update versions

* Configure gdal for windows arm and arm64

* Add postgresql feature

* Update versions

* Update wrapper

* Update versions

* Update baseline

* [skip actions] CI

* Use pkgconfig for expat

* Update versions

* uwp is unsupported (comsuppw.lib, atls.lib)

* Update versions
2022-01-03 13:08:39 -08:00

61 lines
1.1 KiB
JSON

{
"name": "hdf5",
"version": "1.12.1",
"port-version": 3,
"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"
]
}
}
}