summaryrefslogtreecommitdiff
path: root/asl/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-11-19 00:08:33 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-12-20 15:35:58 +0100
commitd241eaf1b209dcfb05656842dd6250067b704d99 (patch)
tree49f34f6226f4614611d16ba6332b1b50b51a4712 /asl/BUILD.bazel
parent58200ce939a591008a8d9406f437252ce2b175cf (diff)
Add allocator, start work on box
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r--asl/BUILD.bazel4
1 files changed, 4 insertions, 0 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel
index 0841a86..20a1651 100644
--- a/asl/BUILD.bazel
+++ b/asl/BUILD.bazel
@@ -1,8 +1,10 @@
cc_library(
name = "asl",
hdrs = [
+ "allocator.hpp",
"annotations.hpp",
"assert.hpp",
+ "box.hpp",
"config.hpp",
"format.hpp",
"functional.hpp",
@@ -19,6 +21,7 @@ cc_library(
"utility.hpp",
],
srcs = [
+ "allocator.cpp",
"format.cpp",
"print.cpp",
],
@@ -36,6 +39,7 @@ cc_library(
"//asl/testing",
],
) for name in [
+ "box",
"format",
"functional",
"integers",