aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/lmdb.BUILD
blob: 357e4a9335aa630ccc7beef0732095ec6355953e (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
# Description:
#   LMDB is the Lightning Memory-mapped Database.

licenses(["notice"])  # OpenLDAP Public License

exports_files(["LICENSE"])

cc_library(
    name = "lmdb",
    srcs = [
        "mdb.c",
        "midl.c",
    ],
    hdrs = [
        "lmdb.h",
        "midl.h",
    ],
    copts = [
        "-w",
    ],
    linkopts = [
        "-lpthread",
    ],
    visibility = ["//visibility:public"],
)