diff options
Diffstat (limited to 'vcpkg/ports/rocksdb/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/rocksdb/vcpkg.json | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/vcpkg/ports/rocksdb/vcpkg.json b/vcpkg/ports/rocksdb/vcpkg.json new file mode 100644 index 0000000..fafe677 --- /dev/null +++ b/vcpkg/ports/rocksdb/vcpkg.json @@ -0,0 +1,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" + ] + } + } +} |