summaryrefslogtreecommitdiff
path: root/other/fun/BUILD.bazel
blob: 93009543a2702921ff631db962ec3d59725d7b62 (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
cc_binary(
    name = "cracker",
    srcs = ["cracker.c"],
    deps = [
        "//c-toxcore/testing:misc_tools",
        "@libsodium",
    ],
)

cc_binary(
    name = "sign",
    srcs = ["sign.c"],
    copts = ["-w"],
    deps = [
        "//c-toxcore/testing:misc_tools",
        "@libsodium",
    ],
)

cc_binary(
    name = "strkey",
    srcs = ["strkey.c"],
    copts = ["-w"],
    deps = [
        "@libsodium",
    ],
)