1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:37:46 +02:00
toxic/BUILD.bazel
2018-07-06 14:41:16 +00:00

27 lines
450 B
Python

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