1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-14 11:47:45 +02:00
toxic/BUILD.bazel
iphydf 4144b868ce
Use libconfig built in the WORKSPACE rather than system installed.
Improves hermeticity and reproducibility.
2018-07-15 15:34:19 +00:00

27 lines
452 B
Python

cc_binary(
name = "toxic",
srcs = glob([
"src/*.c",
"src/*.h",
]),
copts = [
"-DAUDIO",
"-DPACKAGE_DATADIR='\"data\"'",
"-DPYTHON",
"-DVIDEO",
],
linkopts = [
"-lncurses",
"-lopenal",
"-lX11",
],
deps = [
"//c-toxcore",
"@curl",
"@libconfig",
"@libqrencode",
"@libvpx",
"@python3//:python",
],
)