1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-22 16:23:01 +01:00

Use bazel import libs instead of global -l flags.

Import libs currently also point to the global system installed versions,
but at least we have the freedom to import them properly later.
This commit is contained in:
iphydf 2018-08-05 19:17:57 +00:00
parent 52855b805a
commit 2413ad2b59
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9

View File

@ -10,17 +10,15 @@ cc_binary(
"-DPYTHON",
"-DVIDEO",
],
linkopts = [
"-lncurses",
"-lopenal",
"-lX11",
],
deps = [
"//c-toxcore",
"@curl",
"@libconfig",
"@libqrencode",
"@libvpx",
"@ncurses",
"@openal",
"@python3//:python",
"@x11//:X11",
],
)