You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/BUILD

61 lines
724 B
Python

cc_library(
name = "headers",
visibility = ["//visibility:public"],
hdrs = glob(["include/**/*.h*"]),
includes = ["include"],
)
cc_binary(
name="bench",
srcs=[
"bench/utils.h",
"bench/bench.cpp"
],
includes=[
"bench"
],
deps=[
":headers"
]
)
cc_binary(
name="async_bench",
srcs=[
"bench/utils.h",
"bench/async_bench.cpp"
],
includes=[
"bench"
],
deps=[
":headers"
]
)
cc_binary(
name="latency",
srcs=[
"bench/utils.h",
"bench/latency.cpp"
],
includes=[
"bench"
],
deps=[
":headers"
]
)
cc_binary(
name="example",
srcs=[
"example/example.cpp"
],
includes=[
"bench"
],
deps=[
":headers"
]
)