diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-09-04 00:11:04 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-09-04 00:11:04 +0200 |
commit | aa427cb5fe7564a85703f14f76f854419274decc (patch) | |
tree | 8395e90d6ce25f8044fb5d2a1a21eecb6e80ed08 /asl/BUILD.bazel | |
parent | f0a94256e25c844ca2ff99377bc8b2fb94f69e84 (diff) |
Bleh
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel index 4fdeb38..e5d5eb3 100644 --- a/asl/BUILD.bazel +++ b/asl/BUILD.bazel @@ -1,9 +1,10 @@ cc_library(
name = "asl",
hdrs = [
+ "annotations.hpp",
"integers.hpp",
"meta.hpp",
- "ptr.hpp",
+ "option.hpp",
"utility.hpp",
],
visibility = ["//visibility:public"],
@@ -18,4 +19,4 @@ cc_library( deps = [
":asl",
],
-) for name in ["integers", "meta", "ptr"]]
+) for name in ["integers", "meta", "option", "utility"]]
|