vcpkg/ports/netcdf-c/vcpkg.json
Kai Pastor e2d1022400
[netcdf-c] Fix pc files; use features (#18120)
* Format manifest

* New port-version

* Quote filepath expressions

* Port to vcpkg-cmake ports

* Remove invalid nc-config file

* Fix pc files

* Use features

* Add feature 'tools'

* x-add-version

* Fix build with msys2 mingw

* Update git-tree
2021-06-28 17:58:35 -07:00

44 lines
928 B
JSON

{
"name": "netcdf-c",
"version-string": "4.7.4",
"port-version": 3,
"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"
}
}
}