diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-20 00:23:28 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-21 23:46:39 +0100 |
commit | c692909ff332de6f2e32db844458ccd03a080e53 (patch) | |
tree | e1d8f6997659052d3075868e27ec2b359e69dd90 /asl/types/BUILD.bazel | |
parent | a665c590d5089bb4bcb72193542b60ef571409a3 (diff) |
Add function
Diffstat (limited to 'asl/types/BUILD.bazel')
-rw-r--r-- | asl/types/BUILD.bazel | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/asl/types/BUILD.bazel b/asl/types/BUILD.bazel index b60bb27..58d7183 100644 --- a/asl/types/BUILD.bazel +++ b/asl/types/BUILD.bazel @@ -78,6 +78,28 @@ cc_library( visibility = ["//visibility:public"], ) +cc_library( + name = "function", + hdrs = [ + "function.hpp", + ], + deps = [ + "//asl/base", + "//asl/memory", + ], + visibility = ["//visibility:public"], +) + +cc_test( + name = "function_tests", + srcs = ["function_tests.cpp"], + deps = [ + "//asl/tests:utils", + "//asl/testing", + "//asl/types:function", + ], +) + cc_test( name = "box_tests", srcs = ["box_tests.cpp"], |