aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/igraph/vcpkg.json
blob: 57ce45cf73aceea9931a950b6554f5386fa9b14f (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
{
  "name": "igraph",
  "version": "1.0.0",
  "description": "igraph is a C library for network analysis and graph theory, with an emphasis on efficiency portability and ease of use.",
  "homepage": "https://igraph.org/",
  "license": "GPL-2.0-or-later",
  "supports": "!xbox",
  "dependencies": [
    "blas",
    "lapack",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "graphml"
  ],
  "features": {
    "graphml": {
      "description": "Support for reading GraphML files",
      "dependencies": [
        "libxml2"
      ]
    },
    "openmp": {
      "description": "Use OpenMP parallelization in some functions"
    }
  }
}