-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
58 lines (54 loc) · 1.02 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package(default_visibility = ["//visibility:public"])
common_copts = [
"-std=c++17",
"-O3",
"-g",
"-Wall",
"-Wextra",
"-Werror",
]
cc_library(
name = "rapidjson-utility",
hdrs = glob([
"include/rapidjson-utility/*.h",
"include/rapidjson-utility/**/*.h",
]),
copts = common_copts,
includes = [
"include",
],
deps = [
"@rapidjson",
"@result-cpp",
],
)
cc_test(
name = "unittest",
srcs = glob([
"test/*_test.cc",
"test/**/*_test.cc",
"test/**/*.h",
]),
copts = common_copts + [
"-fno-access-control",
],
deps = [
":rapidjson-utility",
"@gtest//:gtest_main",
"@snapshot",
],
)
cc_binary(
name = "benchmark",
srcs = glob([
"test/*_benchmark.cc",
"test/**/*_benchmark.cc",
"test/**/*.h",
]),
copts = common_copts,
deps = [
":rapidjson-utility",
"@google_benchmark//:benchmark_main",
"@gtest",
],
)