mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 00:39:00 +08:00
c867e68ca8
* 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
58 lines
1.1 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|