mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
1cdcf938b9
This makes far-away endifs clearer, so we're applying the rule to all endifs to be consistent.
19 lines
367 B
Python
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__"],
|
|
)
|