forked from boostorg/spirit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBUILD.bazel
45 lines (43 loc) · 1.07 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
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "boost.spirit",
hdrs = glob([
"include/**/*.hpp",
"include/**/*.h",
"include/**/*.ipp",
]),
includes = ["include"],
srcs = glob(["src/**/*.cpp"]),
deps = [
"@boost.array",
"@boost.assert",
"@boost.config",
"@boost.core",
"@boost.endian",
"@boost.function",
"@boost.function_types",
"@boost.fusion",
"@boost.integer",
"@boost.io",
"@boost.iterator",
"@boost.move",
"@boost.mpl",
"@boost.optional",
"@boost.phoenix",
"@boost.pool",
"@boost.preprocessor",
"@boost.proto",
"@boost.range",
"@boost.regex",
"@boost.smart_ptr",
"@boost.static_assert",
"@boost.thread",
"@boost.throw_exception",
"@boost.type_traits",
"@boost.typeof",
"@boost.unordered",
"@boost.utility",
"@boost.variant",
],
)