vcpkg/ports/hdf5/vcpkg.json
Jack·Boos·Yu 3d8f78171a
[hdf5] Refix msmpi library path in pkgconfig (#25089)
* [hdf5] Refix msmpi library path in pkgconfig

* version

* version

* Apply suggestion

* version

* [hdf5] Use post-hoc string replacement

* version

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2022-06-15 14:09:36 -07:00

62 lines
1.2 KiB
JSON

{
"name": "hdf5",
"version": "1.12.2",
"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/",
"license": "BSD-3-Clause",
"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"
]
}
}
}