toxcore/third_party/BUILD.bazel
iphydf 1cdcf938b9
cleanup: Add comment after every #endif.
This makes far-away endifs clearer, so we're applying the rule to all
endifs to be consistent.
2024-01-23 21:52:41 +00:00

19 lines
367 B
Python

load("//tools:no_undefined.bzl", "cc_library")
cc_library(
name = "cmp",
srcs = ["cmp/cmp.c"],
hdrs = ["cmp/cmp.h"],
copts = ["-DCMP_NO_FLOAT"],
visibility = ["//c-toxcore:__subpackages__"],
)
filegroup(
name = "cimple_files",
srcs = [
"cmp/cmp.c",
"cmp/cmp.h",
],
visibility = ["//c-toxcore:__subpackages__"],
)