summaryrefslogtreecommitdiff
path: root/toxencryptsave/BUILD
blob: 6dfb67b1e6dee8802797adb9cb60a2a9fd37d484 (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
26
27
28
29
30
31
32
33
34
filegroup(
    name = "public",
    srcs = ["toxencryptsave.h"],
    visibility = ["//visibility:public"],
)

cc_library(
    name = "toxencryptsave",
    srcs = [
        "toxencryptsave.c",
    ],
    hdrs = [
        "defines.h",
        "toxencryptsave.h",
    ],
    copts = [
        "-std=c99",
    ],
    visibility = [
        "//visibility:public",
    ],
    deps = [
        "//c-toxcore/toxcore:crypto_core",
    ],
)

cc_library(
    name = "monolith",
    hdrs = glob([
        "*.c",
        "*.h",
    ]),
    visibility = ["//c-toxcore/other:__pkg__"],
)