aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/sqlite.BUILD
blob: f593b71542a24bc4810c403db9592b1790aca5f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Description:
#   Sqlite3 library. Provides utilities for interacting
#   with sqlite3 databases.

licenses(["notice"])  # BSD/MIT-like license

exports_files(["LICENSE"])

cc_library(
    name = "sqlite",
    srcs = ["sqlite3.c"],
    hdrs = ["sqlite3.h"],
    includes = ["."],
    linkopts = ["-lm"],
    visibility = ["//visibility:public"],
)