mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
36ba80aacb
This is not used by anything in the code, so we shouldn't have it in the header.
28 lines
427 B
Python
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",
|
|
],
|
|
)
|