aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/rocksdb/vcpkg.json
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/rocksdb/vcpkg.json
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/rocksdb/vcpkg.json')
-rw-r--r--vcpkg/ports/rocksdb/vcpkg.json79
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"
+ ]
+ }
+ }
+}