toxcore/other/bootstrap_daemon/BUILD
iphydf 1cecb6c87a
Add BUILD files for all the little tools in the repo.
Also, fix av_test.c, since I broke it last time.
2018-01-21 01:31:11 +00:00

13 lines
240 B
Python

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