aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/cgns/vcpkg.json
blob: 18c7f7c0be92b7aa786c4cadb1b105e470408e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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"
    }
  }
}