summaryrefslogtreecommitdiff
path: root/asl/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r--asl/BUILD.bazel13
1 files changed, 12 insertions, 1 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel
index 06e2a9f..5137c8f 100644
--- a/asl/BUILD.bazel
+++ b/asl/BUILD.bazel
@@ -3,6 +3,7 @@ cc_library(
hdrs = [
"annotations.hpp",
"assert.hpp",
+ "format.hpp",
"integers.hpp",
"layout.hpp",
"maybe_uninit.hpp",
@@ -11,6 +12,9 @@ cc_library(
"option.hpp",
"utility.hpp",
],
+ srcs = [
+ "format.cpp",
+ ],
visibility = ["//visibility:public"],
)
@@ -23,4 +27,11 @@ cc_library(
deps = [
":asl",
],
-) for name in ["integers", "maybe_uninit", "meta", "option", "utility"]]
+) for name in [
+ "format",
+ "integers",
+ "maybe_uninit",
+ "meta",
+ "option",
+ "utility",
+]]