vcpkg/ports/netcdf-c/vcpkg.json
Osyotr e571da5c6a
[netcdf-c] Fix build under Linux with dynamic linkage (#19981)
* [netcdf-c] Fix build under Linux with dynamic linkage

* Add delete bin on *nix comment.

* Don't mark semver for unverified-semver port.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-13 20:19:32 -07:00

44 lines
921 B
JSON

{
"name": "netcdf-c",
"version": "4.7.4",
"port-version": 4,
"description": "A set of self-describing, machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data.",
"homepage": "https://github.com/Unidata/netcdf-c",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"dap",
"netcdf-4"
],
"features": {
"dap": {
"description": "Build with DAP remote access client support",
"dependencies": [
"curl"
]
},
"netcdf-4": {
"description": "Build with netCDF-4/HDF5 support",
"dependencies": [
{
"name": "hdf5",
"features": [
"zlib"
]
}
]
},
"tools": {
"description": "Build utilities"
}
}
}