vcpkg/ports/hdf5/vcpkg.json
Kai Pastor c867e68ca8
[szip, hdf5] Fix mingw import lib names, control linkage (#17941)
* Format manifest, make port version explicit

* Use standard mingw import lib names

* Choose either static or shared binaries

* Insert macro for dynamic linkage

* Add szip pc file

* Quote path expressions

* Port away from deprecated cmake functions

* x-add-version

* Begin of hdf5 changes

* Remove obsolete variables (complements 23eadeae)

* Fix indentation and quoting expressions

* Handle single-linkage szip configuration

* Use mingw import lib names for hdf5

* Move dependencies to Requires in pc file

* Port away from deprecated cmake functions

* x-add-version hdf5

* Apply szip review comments

* Update version

* Improve pkgconfig patch to handle lists

* Update git-tree
2021-06-09 15:17:07 -07:00

58 lines
1.1 KiB
JSON

{
"name": "hdf5",
"version": "1.12.0",
"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"
},
"zlib": {
"description": "Build with zlib",
"dependencies": [
"zlib"
]
}
}
}