summaryrefslogtreecommitdiff
path: root/other/fun/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/fun/BUILD.bazel
parent651ef3adb6299e66745cc1d1b57feb29fd17090a (diff)
Avoid clashes with "build" directories on case-insensitive file systems.
Diffstat (limited to 'other/fun/BUILD.bazel')
-rw-r--r--other/fun/BUILD.bazel27
1 files changed, 27 insertions, 0 deletions
diff --git a/other/fun/BUILD.bazel b/other/fun/BUILD.bazel
new file mode 100644
index 00000000..c3ab510e
--- /dev/null
+++ b/other/fun/BUILD.bazel
@@ -0,0 +1,27 @@
1cc_binary(
2 name = "cracker",
3 srcs = ["cracker.c"],
4 deps = [
5 "//c-toxcore/testing:misc_tools",
6 "@libsodium",
7 ],
8)
9
10cc_binary(
11 name = "sign",
12 srcs = ["sign.c"],
13 deps = [
14 "//c-toxcore/testing:misc_tools",
15 "@libsodium",
16 ],
17 copts = ["-w"],
18)
19
20cc_binary(
21 name = "strkey",
22 srcs = ["strkey.c"],
23 deps = [
24 "@libsodium",
25 ],
26 copts = ["-w"],
27)