mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
0f7138c010
Removed av_test, because it depends on an ancient opencv that starts to really not exist on modern systems anymore.
37 lines
670 B
Python
37 lines
670 B
Python
load("//tools:no_undefined.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "misc_tools",
|
|
srcs = ["misc_tools.c"],
|
|
hdrs = ["misc_tools.h"],
|
|
visibility = ["//c-toxcore:__subpackages__"],
|
|
deps = ["//c-toxcore/toxcore"],
|
|
)
|
|
|
|
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",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "random_testing",
|
|
srcs = ["random_testing.cc"],
|
|
deps = [
|
|
":misc_tools",
|
|
"//c-toxcore/toxcore",
|
|
],
|
|
)
|