1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:57:45 +02:00
toxic/BUILD.bazel

25 lines
425 B
Python
Raw Normal View History

2018-01-20 20:04:27 +01:00
cc_binary(
name = "toxic",
srcs = glob([
"src/*.c",
"src/*.h",
]),
copts = [
"-DAUDIO",
"-DPACKAGE_DATADIR='\"data\"'",
"-DPYTHON",
"-DVIDEO",
],
deps = [
"//c-toxcore",
"@curl",
"@libconfig",
2018-01-20 20:04:27 +01:00
"@libqrencode",
"@libvpx",
"@ncurses",
"@openal",
2018-01-20 20:04:27 +01:00
"@python3//:python",
"@x11",
2018-01-20 20:04:27 +01:00
],
)