diff options
Diffstat (limited to 'vcpkg/ports/cgns/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/cgns/vcpkg.json | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/vcpkg/ports/cgns/vcpkg.json b/vcpkg/ports/cgns/vcpkg.json new file mode 100644 index 0000000..18c7f7c --- /dev/null +++ b/vcpkg/ports/cgns/vcpkg.json @@ -0,0 +1,67 @@ +{ + "name": "cgns", + "version-semver": "4.5.0", + "port-version": 1, + "description": "The CFD General Notation System (CGNS) provides a standard for recording and recovering computer data associated with the numerical solution of fluid dynamics equations.", + "homepage": "https://cgns.org/", + "license": "Zlib", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "hdf5", + { + "name": "lfs", + "platform": "!osx" + } + ], + "features": { + "fortran": { + "description": "Enable fortran support (not yet implemented)" + }, + "hdf5": { + "description": "Enable hdf5 support", + "dependencies": [ + { + "name": "hdf5", + "default-features": false + } + ] + }, + "legacy": { + "description": "Enable legacy support" + }, + "lfs": { + "description": "Enable LFS support" + }, + "mpi": { + "description": "Enable MPI support", + "dependencies": [ + { + "name": "cgns", + "default-features": false, + "features": [ + "hdf5" + ] + }, + { + "name": "hdf5", + "default-features": false, + "features": [ + "parallel" + ] + } + ] + }, + "tests": { + "description": "Build tests" + } + } +} |