summaryrefslogtreecommitdiff
path: root/asl/meta/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'asl/meta/BUILD.bazel')
-rw-r--r--asl/meta/BUILD.bazel18
1 files changed, 18 insertions, 0 deletions
diff --git a/asl/meta/BUILD.bazel b/asl/meta/BUILD.bazel
new file mode 100644
index 0000000..f914bf3
--- /dev/null
+++ b/asl/meta/BUILD.bazel
@@ -0,0 +1,18 @@
+cc_library(
+ name = "meta",
+ hdrs = [
+ "types.hpp",
+ ],
+ visibility = ["//visibility:public"],
+)
+
+cc_test(
+ name = "types_tests",
+ srcs = [
+ "types_tests.cpp",
+ ],
+ deps = [
+ ":meta",
+ ],
+)
+