Skip to content

Commit 0c52bc2

Browse files
committed
[bazelboost] Updating WORKSPACE and BUILD.bazel for 1.65.1
1 parent 9259f5c commit 0c52bc2

File tree

2 files changed

+127
-1
lines changed

2 files changed

+127
-1
lines changed

BUILD.bazel

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,20 @@ cc_library(
2020
],
2121
deps = [
2222
"@com_github_bazelboost_config//:config",
23-
"@com_github_bazelboost_iterator//:iterator"
23+
"@com_github_bazelboost_mpl//:mpl",
24+
"@com_github_bazelboost_preprocessor//:preprocessor",
25+
"@com_github_bazelboost_core//:core",
26+
"@com_github_bazelboost_conversion//:conversion",
27+
"@com_github_bazelboost_static_assert//:static_assert",
28+
"@com_github_bazelboost_smart_ptr//:smart_ptr",
29+
"@com_github_bazelboost_detail//:detail",
30+
"@com_github_bazelboost_utility//:utility",
31+
"@com_github_bazelboost_tuple//:tuple",
32+
"@com_github_bazelboost_function//:function",
33+
"@com_github_bazelboost_type_traits//:type_traits",
34+
"@com_github_bazelboost_bind//:bind",
35+
"@com_github_bazelboost_iterator//:iterator",
36+
"@com_github_bazelboost_lexical_cast//:lexical_cast",
37+
"@com_github_bazelboost_foreach//:foreach"
2438
],
2539
)

WORKSPACE

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,122 @@ http_archive(
77
],
88
)
99

10+
http_archive(
11+
name = "com_github_bazelboost_mpl",
12+
strip_prefix = "mpl-boost-1.65.1",
13+
urls = [
14+
"https://github.com/bazelboost/mpl/archive/boost-1.65.1.tar.gz"
15+
],
16+
)
17+
18+
http_archive(
19+
name = "com_github_bazelboost_preprocessor",
20+
strip_prefix = "preprocessor-boost-1.65.1",
21+
urls = [
22+
"https://github.com/bazelboost/preprocessor/archive/boost-1.65.1.tar.gz"
23+
],
24+
)
25+
26+
http_archive(
27+
name = "com_github_bazelboost_core",
28+
strip_prefix = "core-boost-1.65.1",
29+
urls = [
30+
"https://github.com/bazelboost/core/archive/boost-1.65.1.tar.gz"
31+
],
32+
)
33+
34+
http_archive(
35+
name = "com_github_bazelboost_conversion",
36+
strip_prefix = "conversion-boost-1.65.1",
37+
urls = [
38+
"https://github.com/bazelboost/conversion/archive/boost-1.65.1.tar.gz"
39+
],
40+
)
41+
42+
http_archive(
43+
name = "com_github_bazelboost_static_assert",
44+
strip_prefix = "static_assert-boost-1.65.1",
45+
urls = [
46+
"https://github.com/bazelboost/static_assert/archive/boost-1.65.1.tar.gz"
47+
],
48+
)
49+
50+
http_archive(
51+
name = "com_github_bazelboost_smart_ptr",
52+
strip_prefix = "smart_ptr-boost-1.65.1",
53+
urls = [
54+
"https://github.com/bazelboost/smart_ptr/archive/boost-1.65.1.tar.gz"
55+
],
56+
)
57+
58+
http_archive(
59+
name = "com_github_bazelboost_detail",
60+
strip_prefix = "detail-boost-1.65.1",
61+
urls = [
62+
"https://github.com/bazelboost/detail/archive/boost-1.65.1.tar.gz"
63+
],
64+
)
65+
66+
http_archive(
67+
name = "com_github_bazelboost_utility",
68+
strip_prefix = "utility-boost-1.65.1",
69+
urls = [
70+
"https://github.com/bazelboost/utility/archive/boost-1.65.1.tar.gz"
71+
],
72+
)
73+
74+
http_archive(
75+
name = "com_github_bazelboost_tuple",
76+
strip_prefix = "tuple-boost-1.65.1",
77+
urls = [
78+
"https://github.com/bazelboost/tuple/archive/boost-1.65.1.tar.gz"
79+
],
80+
)
81+
82+
http_archive(
83+
name = "com_github_bazelboost_function",
84+
strip_prefix = "function-boost-1.65.1",
85+
urls = [
86+
"https://github.com/bazelboost/function/archive/boost-1.65.1.tar.gz"
87+
],
88+
)
89+
90+
http_archive(
91+
name = "com_github_bazelboost_type_traits",
92+
strip_prefix = "type_traits-boost-1.65.1",
93+
urls = [
94+
"https://github.com/bazelboost/type_traits/archive/boost-1.65.1.tar.gz"
95+
],
96+
)
97+
98+
http_archive(
99+
name = "com_github_bazelboost_bind",
100+
strip_prefix = "bind-boost-1.65.1",
101+
urls = [
102+
"https://github.com/bazelboost/bind/archive/boost-1.65.1.tar.gz"
103+
],
104+
)
105+
10106
http_archive(
11107
name = "com_github_bazelboost_iterator",
12108
strip_prefix = "iterator-boost-1.65.1",
13109
urls = [
14110
"https://github.com/bazelboost/iterator/archive/boost-1.65.1.tar.gz"
15111
],
16112
)
113+
114+
http_archive(
115+
name = "com_github_bazelboost_lexical_cast",
116+
strip_prefix = "lexical_cast-boost-1.65.1",
117+
urls = [
118+
"https://github.com/bazelboost/lexical_cast/archive/boost-1.65.1.tar.gz"
119+
],
120+
)
121+
122+
http_archive(
123+
name = "com_github_bazelboost_foreach",
124+
strip_prefix = "foreach-boost-1.65.1",
125+
urls = [
126+
"https://github.com/bazelboost/foreach/archive/boost-1.65.1.tar.gz"
127+
],
128+
)

0 commit comments

Comments
 (0)