summaryrefslogtreecommitdiffstats
path: root/src/rocksdb/tools/rdb/binding.gyp
blob: 89145541ce58682da9b54b925c565d0a609dc023 (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
{
    "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"
            ],
        }
    ]
}