blob: df2d1be6f7ec4fda0f076ff8b177686699d788a4 [file] [log] [blame]
Brian Silvermanf2639282018-08-04 16:46:11 -07001licenses(["notice"]) # boost
2
3cc_library(
4 name = "optional",
5 hdrs = glob(["include/**"]),
6 includes = ["include"],
Philipp Schraderdada1072020-11-24 11:34:46 -08007 target_compatible_with = ["@platforms//os:linux"],
Brian Silvermanf2639282018-08-04 16:46:11 -07008 visibility = ["//visibility:public"],
9 deps = [
10 "//third_party/boostorg/assert",
11 "//third_party/boostorg/core",
12 "//third_party/boostorg/static_assert",
13 "//third_party/boostorg/throw_exception",
14 "//third_party/boostorg/type_traits",
15 ],
16)