diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-22 01:21:56 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-22 19:24:40 +0100 |
commit | 781877bd26ed7ab01ae6cf952bf4691641593ed2 (patch) | |
tree | 1f64c53d7fdada9d751fb88c4fa35fbf03305221 /asl/types/BUILD.bazel | |
parent | c692909ff332de6f2e32db844458ccd03a080e53 (diff) |
Add function_ref
Diffstat (limited to 'asl/types/BUILD.bazel')
-rw-r--r-- | asl/types/BUILD.bazel | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/asl/types/BUILD.bazel b/asl/types/BUILD.bazel index 58d7183..198d0a2 100644 --- a/asl/types/BUILD.bazel +++ b/asl/types/BUILD.bazel @@ -90,6 +90,17 @@ cc_library( visibility = ["//visibility:public"], ) +cc_library( + name = "function_ref", + hdrs = [ + "function_ref.hpp", + ], + deps = [ + "//asl/base", + ], + visibility = ["//visibility:public"], +) + cc_test( name = "function_tests", srcs = ["function_tests.cpp"], @@ -101,6 +112,16 @@ cc_test( ) cc_test( + name = "function_ref_tests", + srcs = ["function_ref_tests.cpp"], + deps = [ + "//asl/tests:utils", + "//asl/testing", + "//asl/types:function_ref", + ], +) + +cc_test( name = "box_tests", srcs = ["box_tests.cpp"], deps = [ |