blob: 631a473e598ed2c853fb5b1cf4e173d9fa6fb02c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
cc_binary(
name = "bootstrap_daemon",
srcs = glob([
"src/*.c",
"src/*.h",
]),
deps = [
"//c-toxcore/other:bootstrap_node_packets",
"//c-toxcore/toxcore",
"@libconfig",
],
)
|