-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
BUILD.bazel
47 lines (43 loc) · 802 Bytes
/
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
package(default_visibility = ["//visibility:public"])
common_copts = [
"-std=c++17",
"-O3",
"-g",
"-Wall",
"-Wextra",
"-Werror",
]
cc_library(
name = "snapshot",
hdrs = glob(["include/snapshot/**/*.h"]),
copts = common_copts,
includes = [
"include",
],
)
cc_test(
name = "unittest",
srcs = glob([
"test/*_test.cc",
"test/**/*_test.cc",
]),
copts = common_copts + [
"-fno-access-control",
"-Wno-unused-result",
],
deps = [
":snapshot",
"@gtest//:gtest_main",
],
)
cc_binary(
name = "benchmark",
srcs = glob([
"test/*_benchmark.cc",
]),
copts = common_copts,
deps = [
":snapshot",
"@google_benchmark//:benchmark_main",
],
)