mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Merge pull request #80 from BYVoid/bench
Add benchmark binary to Bazel BUILD.
This commit is contained in:
commit
bc93aee338
2 changed files with 13 additions and 0 deletions
10
BUILD.bazel
10
BUILD.bazel
|
@ -10,3 +10,13 @@ cc_test(
|
|||
srcs = ["tests/unit.cpp"],
|
||||
deps = [":fast_double_parser"],
|
||||
)
|
||||
|
||||
cc_binary(
|
||||
name = "benchmark",
|
||||
srcs = ["benchmarks/benchmark.cpp"],
|
||||
deps = [
|
||||
":fast_double_parser",
|
||||
"@abseil-cpp//absl/strings",
|
||||
"@double-conversion",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -5,3 +5,6 @@ module(
|
|||
version = "0.8.0",
|
||||
compatibility_level = 0,
|
||||
)
|
||||
|
||||
bazel_dep(name = "abseil-cpp", version = "20240722.0", dev_dependency = True)
|
||||
bazel_dep(name = "double-conversion", version = "3.3.0", dev_dependency = True)
|
||||
|
|
Loading…
Add table
Reference in a new issue