mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
35 lines
573 B
Python
35 lines
573 B
Python
filegroup(
|
|
name = "public",
|
|
srcs = ["toxencryptsave.h"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "toxencryptsave",
|
|
srcs = [
|
|
"toxencryptsave.c",
|
|
],
|
|
hdrs = [
|
|
"defines.h",
|
|
"toxencryptsave.h",
|
|
],
|
|
copts = [
|
|
"-std=c99",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
deps = [
|
|
"//c-toxcore/toxcore:crypto_core",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "monolith",
|
|
hdrs = glob([
|
|
"*.c",
|
|
"*.h",
|
|
]),
|
|
visibility = ["//c-toxcore/other:__pkg__"],
|
|
)
|