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