summaryrefslogtreecommitdiff
path: root/other/bootstrap_daemon/BUILD.bazel
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-28 15:17:34 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-28 15:17:34 +0000
commit6e0ac337c979af420bef197f2a9e2bde5e65d0fc (patch)
tree77f2a92c7f09d994b207ddf8a10658ca5ccf4df2 /other/bootstrap_daemon/BUILD.bazel
parent651ef3adb6299e66745cc1d1b57feb29fd17090a (diff)
Avoid clashes with "build" directories on case-insensitive file systems.
Diffstat (limited to 'other/bootstrap_daemon/BUILD.bazel')
-rw-r--r--other/bootstrap_daemon/BUILD.bazel12
1 files changed, 12 insertions, 0 deletions
diff --git a/other/bootstrap_daemon/BUILD.bazel b/other/bootstrap_daemon/BUILD.bazel
new file mode 100644
index 00000000..631a473e
--- /dev/null
+++ b/other/bootstrap_daemon/BUILD.bazel
@@ -0,0 +1,12 @@
1cc_binary(
2 name = "bootstrap_daemon",
3 srcs = glob([
4 "src/*.c",
5 "src/*.h",
6 ]),
7 deps = [
8 "//c-toxcore/other:bootstrap_node_packets",
9 "//c-toxcore/toxcore",
10 "@libconfig",
11 ],
12)