diff options
Diffstat (limited to '')
-rw-r--r-- | src/rocksdb/tools/rdb/binding.gyp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/rocksdb/tools/rdb/binding.gyp b/src/rocksdb/tools/rdb/binding.gyp new file mode 100644 index 000000000..89145541c --- /dev/null +++ b/src/rocksdb/tools/rdb/binding.gyp @@ -0,0 +1,25 @@ +{ + "targets": [ + { + "target_name": "rdb", + "sources": [ + "rdb.cc", + "db_wrapper.cc", + "db_wrapper.h" + ], + "cflags_cc!": [ + "-fno-exceptions" + ], + "cflags_cc+": [ + "-std=c++11", + ], + "include_dirs+": [ + "../../include" + ], + "libraries": [ + "../../../librocksdb.a", + "-lsnappy" + ], + } + ] +} |