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/bench/BUILD

41 lines
449 B
Python

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"
]
)