toxcore/other/fun/BUILD.bazel
iphydf 36ba80aacb
Remove csrc from the RTPHeader struct.
This is not used by anything in the code, so we shouldn't have it in the
header.
2018-02-08 13:20:40 +00:00

28 lines
427 B
Python

cc_binary(
name = "cracker",
srcs = ["cracker.c"],
deps = [
"//c-toxcore/testing:misc_tools",
"@libsodium",
],
)
cc_binary(
name = "sign",
srcs = ["sign.c"],
copts = ["-w"],
deps = [
"//c-toxcore/testing:misc_tools",
"@libsodium",
],
)
cc_binary(
name = "strkey",
srcs = ["strkey.c"],
copts = ["-w"],
deps = [
"@libsodium",
],
)