mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
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"],
|
||
|
deps = [
|
||
|
"//c-toxcore/testing:misc_tools",
|
||
|
"@libsodium",
|
||
|
],
|
||
|
copts = ["-w"],
|
||
|
)
|
||
|
|
||
|
cc_binary(
|
||
|
name = "strkey",
|
||
|
srcs = ["strkey.c"],
|
||
|
deps = [
|
||
|
"@libsodium",
|
||
|
],
|
||
|
copts = ["-w"],
|
||
|
)
|