-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
86 lines (75 loc) · 1.4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "map",
hdrs = [
"include/Map.hpp",
],
strip_include_prefix = "include",
deps = [":skiplist"],
)
cc_library(
name = "skiplist",
hdrs = [
"include/SkipList.hpp",
],
strip_include_prefix = "include",
deps = ["@boost//:container"],
)
cc_library(
name = "list",
hdrs = [
"include/List.hpp",
],
strip_include_prefix = "include",
)
cc_library(
name = "allocator",
hdrs = [
"include/Allocator.hpp",
],
strip_include_prefix = "include",
)
cc_library(
name = "algorithm",
hdrs = [
"include/algorithm.hpp",
],
strip_include_prefix = "include",
)
cc_library(
name = "decorators",
hdrs = [
"include/Decorators.hpp",
],
strip_include_prefix = "include",
)
cc_library(
name = "function",
hdrs = [
"include/Function.hpp",
],
strip_include_prefix = "include",
)
cc_library(
name = "point",
hdrs = [
"include/Point.hpp",
],
strip_include_prefix = "include",
)
cc_library(
name = "stack",
hdrs = [
"include/Stack.hpp",
],
strip_include_prefix = "include",
deps = [":list"],
)
cc_library(
name = "vector",
hdrs = [
"include/Vector.hpp",
],
strip_include_prefix = "include",
)