2018-01-21 09:05:23 +08:00
|
|
|
cc_binary(
|
|
|
|
name = "cracker",
|
|
|
|
srcs = ["cracker.c"],
|
|
|
|
deps = [
|
|
|
|
"//c-toxcore/testing:misc_tools",
|
|
|
|
"@libsodium",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "sign",
|
|
|
|
srcs = ["sign.c"],
|
2018-02-02 23:37:19 +08:00
|
|
|
copts = ["-w"],
|
2018-01-21 09:05:23 +08:00
|
|
|
deps = [
|
|
|
|
"//c-toxcore/testing:misc_tools",
|
|
|
|
"@libsodium",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "strkey",
|
|
|
|
srcs = ["strkey.c"],
|
2018-02-02 23:37:19 +08:00
|
|
|
copts = ["-w"],
|
2018-01-21 09:05:23 +08:00
|
|
|
deps = [
|
|
|
|
"@libsodium",
|
|
|
|
],
|
|
|
|
)
|
2018-08-05 04:56:01 +08:00
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "save-generator",
|
|
|
|
srcs = ["save-generator.c"],
|
|
|
|
deps = [
|
|
|
|
"//c-toxcore/testing:misc_tools",
|
|
|
|
"//c-toxcore/toxcore",
|
|
|
|
],
|
|
|
|
)
|