mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-14 18:03:02 +01:00
6f72a191ba
This reverts commit dd5fa236ae
.
Also, set `-std=gnu99` in Bazel build.
42 lines
896 B
Python
42 lines
896 B
Python
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
|
load("//tools/project:build_defs.bzl", "project")
|
|
|
|
project()
|
|
|
|
cc_binary(
|
|
name = "toxic",
|
|
srcs = glob(
|
|
[
|
|
"src/*.c",
|
|
"src/*.h",
|
|
],
|
|
exclude = ["src/video*"],
|
|
) + select({
|
|
"//tools/config:linux": glob(["src/video*"]),
|
|
"//tools/config:osx": [],
|
|
}),
|
|
copts = [
|
|
"-std=gnu99",
|
|
"-DAUDIO",
|
|
"-DPACKAGE_DATADIR='\"data\"'",
|
|
"-DPYTHON",
|
|
"-DQRCODE",
|
|
] + select({
|
|
"//tools/config:linux": ["-DVIDEO"],
|
|
"//tools/config:osx": [],
|
|
}),
|
|
deps = [
|
|
"//c-toxcore",
|
|
"@curl",
|
|
"@libconfig",
|
|
"@libqrencode",
|
|
"@libvpx",
|
|
"@ncurses",
|
|
"@openal",
|
|
"@python3//:python",
|
|
] + select({
|
|
"//tools/config:linux": ["@x11"],
|
|
"//tools/config:osx": [],
|
|
}),
|
|
)
|