2018-01-22 00:58:32 +08:00
|
|
|
load("//tools:no_undefined.bzl", "cc_library")
|
|
|
|
|
2018-01-18 23:14:50 +08:00
|
|
|
cc_library(
|
|
|
|
name = "misc_tools",
|
|
|
|
hdrs = [
|
|
|
|
"misc_tools.c",
|
|
|
|
],
|
2018-01-23 03:34:52 +08:00
|
|
|
visibility = ["//c-toxcore:__subpackages__"],
|
2018-01-18 23:14:50 +08:00
|
|
|
)
|
2018-01-20 22:09:50 +08:00
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "DHT_test",
|
|
|
|
srcs = ["DHT_test.c"],
|
|
|
|
deps = [
|
|
|
|
":misc_tools",
|
|
|
|
"//c-toxcore/toxcore",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "Messenger_test",
|
|
|
|
srcs = ["Messenger_test.c"],
|
|
|
|
deps = [
|
|
|
|
":misc_tools",
|
|
|
|
"//c-toxcore/toxcore",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2018-01-21 09:05:23 +08:00
|
|
|
cc_binary(
|
|
|
|
name = "av_test",
|
|
|
|
srcs = ["av_test.c"],
|
|
|
|
linkopts = [
|
|
|
|
"-lopencv_highgui",
|
|
|
|
"-lopencv_core",
|
|
|
|
],
|
|
|
|
deps = [
|
|
|
|
"//c-toxcore/toxav",
|
|
|
|
"//c-toxcore/toxav:monolith",
|
|
|
|
"//c-toxcore/toxcore",
|
2018-01-22 07:00:36 +08:00
|
|
|
"@portaudio",
|
|
|
|
"@sndfile",
|
2018-01-21 09:05:23 +08:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2018-01-20 22:09:50 +08:00
|
|
|
cc_binary(
|
|
|
|
name = "irc_syncbot",
|
|
|
|
srcs = ["irc_syncbot.c"],
|
|
|
|
deps = [
|
|
|
|
":misc_tools",
|
|
|
|
"//c-toxcore/toxcore",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "tox_shell",
|
|
|
|
srcs = ["tox_shell.c"],
|
|
|
|
linkopts = ["-lutil"],
|
|
|
|
deps = [
|
|
|
|
":misc_tools",
|
|
|
|
"//c-toxcore/toxcore",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "tox_sync",
|
|
|
|
srcs = ["tox_sync.c"],
|
|
|
|
deps = [
|
|
|
|
":misc_tools",
|
|
|
|
"//c-toxcore/toxcore",
|
|
|
|
],
|
|
|
|
)
|