-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
49 lines (44 loc) · 1.21 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
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//:__subpackages__"])
exports_files(["README.md"])
filegroup(
name = "format_config",
srcs = [".clang-format"],
)
filegroup(
name = "tidy_config",
srcs = [".clang-tidy"],
)
cc_library(
name = "skytest",
srcs = [
"src/aborts.hpp",
"src/cfg.hpp",
"src/default_printer.hpp",
"src/detail/arg_fmt.hpp",
"src/detail/is_defined.hpp",
"src/detail/is_range.hpp",
"src/detail/is_specialization_of.hpp",
"src/detail/predicate.hpp",
"src/detail/priority.hpp",
"src/detail/relation.hpp",
"src/detail/remove_cvref.hpp",
"src/detail/static_closure.hpp",
"src/detail/test_style.hpp",
"src/detail/trim_substring.hpp",
"src/detail/type_name.hpp",
"src/expect.hpp",
"src/pred.hpp",
"src/result.hpp",
"src/rope.hpp",
"src/runner.hpp",
"src/source_location.hpp",
"src/test.hpp",
"src/test_param.hpp",
"src/utility.hpp",
"src/version.hpp",
],
hdrs = ["skytest.hpp"],
include_prefix = "skytest",
visibility = ["//visibility:public"],
)