mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-15 03:33:01 +01:00
27 lines
450 B
Python
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",
|
|
],
|
|
)
|