forked from boostorg/beast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBUILD.bazel
36 lines (34 loc) · 870 Bytes
/
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
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "boost.beast",
hdrs = glob([
"include/**/*.hpp",
"include/**/*.ipp",
"include/**/*.h",
]),
includes = ["include"],
deps = [
"@boost.asio",
"@boost.assert",
"@boost.bind",
"@boost.config",
"@boost.container",
"@boost.container_hash",
"@boost.core",
"@boost.endian",
"@boost.intrusive",
"@boost.logic",
"@boost.mp11",
"@boost.optional",
"@boost.preprocessor",
"@boost.smart_ptr",
"@boost.static_assert",
"@boost.static_string",
"@boost.system",
"@boost.throw_exception",
"@boost.type_index",
"@boost.type_traits",
"@boost.winapi",
],
)