summaryrefslogtreecommitdiff
path: root/other/bootstrap_daemon/BUILD
blob: d4a6bd2e7f94e42f6e9e319df7a98f1d4bd995a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cc_binary(
    name = "bootstrap_daemon",
    srcs = glob([
        "src/*.c",
        "src/*.h",
    ]),
    linkopts = ["-lconfig"],
    deps = [
        "//c-toxcore/other:bootstrap_node_packets",
        "//c-toxcore/toxcore",
    ],
)