-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
43 lines (40 loc) · 1.05 KB
/
BUILD
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
load(
"@local_config//:defs.bzl",
"PROJECT_DEFAULT_COPTS",
)
exports_files(
[".clang-tidy"],
visibility = ["//:__subpackages__"],
)
filegroup(
name = "headers",
srcs = [
"include/turtle/frame.hpp",
"include/turtle/fwd.hpp",
"include/turtle/meta.hpp",
"include/turtle/orientation.hpp",
"include/turtle/point.hpp",
"include/turtle/position.hpp",
"include/turtle/quaternion.hpp",
"include/turtle/turtle.hpp",
"include/turtle/util/ulp_diff.hpp",
"include/turtle/util/zip_transform_iterator.hpp",
"include/turtle/vector.hpp",
"include/turtle/vector_interface.hpp",
"include/turtle/vector_ops.hpp",
"include/turtle/velocity.hpp",
"include/turtle/world.hpp",
],
visibility = ["@mcss//:__pkg__"],
)
cc_library(
name = "turtle",
hdrs = [":headers"],
copts = PROJECT_DEFAULT_COPTS,
strip_include_prefix = "include",
visibility = ["//visibility:public"],
deps = [
"@fmt",
"@metal",
],
)