mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-05 01:01:37 +08:00
57ef47d00c
* [hdf5] Update to 1.12.2 * Update hdf5.json * add new tool to list * Update hdf5.json * revert hdf5 subdir in share + special tool * Update hdf5.json * add license (null -> custom license) * formatting * Update hdf5.json * tool is optional * Update hdf5.json * fix guard * Update hdf5.json * attempt to make hdf5perf tool dependent on feature * Update hdf5.json * fix hdf5.json * Update hdf5.json * remove parallel patch per comment see https://github.com/HDFGroup/hdf5/pull/860 * Update hdf5.json * fix MATCHES vs IN_LIST * Update hdf5.json
61 lines
1.2 KiB
JSON
61 lines
1.2 KiB
JSON
{
|
|
"name": "hdf5",
|
|
"version": "1.12.2",
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|