fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
404 B
25 lines
404 B
13 years ago
|
# Copyright 2011 Facebook
|
||
|
# @author Tudor Bosman (tudorb@fb.com)
|
||
|
|
||
|
cpp_library(
|
||
|
name = "neutronium",
|
||
|
srcs = [
|
||
|
"Schema.cpp",
|
||
|
"Encoder.cpp",
|
||
|
"Decoder.cpp",
|
||
|
"InternTable.cpp",
|
||
|
],
|
||
|
thrift_srcs = {
|
||
|
"intern_table.thrift": [],
|
||
|
},
|
||
|
deps = [
|
||
|
"@/folly",
|
||
|
"@/folly/experimental/io",
|
||
|
"@/thrift/lib/cpp/protocol",
|
||
|
],
|
||
|
external_deps = [
|
||
|
("boost", None, "boost"),
|
||
|
],
|
||
|
)
|
||
|
|