mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-14 17:23:03 +01:00
31 lines
543 B
Python
31 lines
543 B
Python
load("//tools/project:build_defs.bzl", "project")
|
|
|
|
project()
|
|
|
|
cc_binary(
|
|
name = "toxic",
|
|
srcs = glob([
|
|
"src/*.c",
|
|
"src/*.h",
|
|
]),
|
|
copts = [
|
|
"-DAUDIO",
|
|
"-DPACKAGE_DATADIR='\"data\"'",
|
|
"-DPYTHON",
|
|
"-DQRCODE",
|
|
"-DVIDEO",
|
|
"-Wno-error=unused-result",
|
|
],
|
|
deps = [
|
|
"//c-toxcore",
|
|
"@curl",
|
|
"@libconfig",
|
|
"@libqrencode",
|
|
"@libvpx",
|
|
"@ncurses",
|
|
"@openal",
|
|
"@python3//:python",
|
|
"@x11",
|
|
],
|
|
)
|