summaryrefslogtreecommitdiff
path: root/other/bootstrap_daemon/BUILD.bazel
blob: 0f38085d82020c78c2f71db2a4688e1291b9171f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
load("@rules_cc//cc:defs.bzl", "cc_binary")

cc_binary(
    name = "bootstrap_daemon",
    srcs = glob([
        "src/*.c",
        "src/*.h",
    ]),
    deps = [
        "//c-toxcore/other:bootstrap_node_packets",
        "//c-toxcore/toxcore",
        "@libconfig",
    ],
)