-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBUILD
More file actions
33 lines (31 loc) · 629 Bytes
/
BUILD
File metadata and controls
33 lines (31 loc) · 629 Bytes
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
cc_library(
name="support",
hdrs=glob(["include/mf/support/*.hpp"]),
strip_include_prefix="include",
visibility=["//test:__subpackages__"],
)
cc_library(
name="zip_iterator",
hdrs=[
"include/mf/zip_iterator.hpp"
],
strip_include_prefix="include",
visibility=["//visibility:public"],
deps=[
":support"
]
)
cc_library(
name="mf",
hdrs=[
"include/mf/multi_allocator_adapter.hpp",
"include/mf/multi_field_array.hpp",
"include/mf/multi_field_array_fwd.hpp",
],
strip_include_prefix="include",
visibility=["//visibility:public"],
deps=[
":support",
":zip_iterator"
]
)