Use self-built portaudio instead of system-provided.

This commit is contained in:
iphydf 2018-01-21 23:00:36 +00:00
parent 033965b8cc
commit e6c04ef028
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9
2 changed files with 3 additions and 2 deletions

View File

@ -4,9 +4,9 @@ cc_binary(
"src/*.c",
"src/*.h",
]),
linkopts = ["-lconfig"],
deps = [
"//c-toxcore/other:bootstrap_node_packets",
"//c-toxcore/toxcore",
"@libconfig",
],
)

View File

@ -30,7 +30,6 @@ cc_binary(
name = "av_test",
srcs = ["av_test.c"],
linkopts = [
"-lportaudio",
"-lopencv_highgui",
"-lopencv_core",
],
@ -38,6 +37,8 @@ cc_binary(
"//c-toxcore/toxav",
"//c-toxcore/toxav:monolith",
"//c-toxcore/toxcore",
"@portaudio",
"@sndfile",
],
)