mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-14 17:33:02 +01:00
4144b868ce
Improves hermeticity and reproducibility.
27 lines
452 B
Python
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",
|
|
],
|
|
)
|