summaryrefslogtreecommitdiff
path: root/asl/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-08-15 00:58:37 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-08-15 00:58:37 +0200
commit298ee421d9dcb6af3d29833f4cf636bb088356fb (patch)
treecd73df4683622283eff23b98d8bf096a8b86b234 /asl/BUILD.bazel
parent75b10758ba116eabed730d23e957f1d69a1e3cb8 (diff)
Some work on pointers
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r--asl/BUILD.bazel5
1 files changed, 4 insertions, 1 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel
index dc0aef8..710eaa8 100644
--- a/asl/BUILD.bazel
+++ b/asl/BUILD.bazel
@@ -3,6 +3,9 @@ cc_library(
hdrs = [
"integers.hpp",
"meta.hpp",
+ "object.hpp",
+ "ptr.hpp",
+ "utility.hpp",
],
visibility = ["//visibility:public"],
)
@@ -15,4 +18,4 @@ cc_library(
deps = [
":asl",
],
-) for name in ["integers", "meta"]]
+) for name in ["integers", "meta", "object", "ptr"]]