aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/rocksdb/vcpkg.json
blob: fafe6778e8803ad208f39817eba99b503c629877 (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
68
69
70
71
72
73
74
75
76
77
78
79
{
  "name": "rocksdb",
  "version": "10.4.2",
  "description": "A library that provides an embeddable, persistent key-value store for fast storage",
  "homepage": "https://github.com/facebook/rocksdb",
  "license": "GPL-2.0-only OR Apache-2.0",
  "supports": "!uwp & !(arm & !arm64 & android)",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "zlib"
  ],
  "features": {
    "bzip2": {
      "description": "build with bzip2",
      "dependencies": [
        "bzip2"
      ]
    },
    "liburing": {
      "description": "build with liburing",
      "supports": "linux",
      "dependencies": [
        {
          "name": "liburing",
          "platform": "linux"
        }
      ]
    },
    "lz4": {
      "description": "build with lz4",
      "dependencies": [
        "lz4"
      ]
    },
    "numa": {
      "description": "build with NUMA policy support",
      "supports": "linux",
      "dependencies": [
        {
          "name": "numactl",
          "platform": "linux"
        }
      ]
    },
    "snappy": {
      "description": "build with SNAPPY",
      "dependencies": [
        "snappy"
      ]
    },
    "tbb": {
      "description": "build with Threading Building Blocks (TBB)",
      "dependencies": [
        "tbb"
      ]
    },
    "zlib": {
      "description": "build with zlib",
      "dependencies": [
        "zlib"
      ]
    },
    "zstd": {
      "description": "build with zstd",
      "dependencies": [
        "zstd"
      ]
    }
  }
}