summaryrefslogtreecommitdiff
path: root/asl/meta/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-08-01 00:56:05 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-08-01 00:56:05 +0200
commit4228e82740f62b841799cfca04861fa217fb93a5 (patch)
tree30bd93b9c62e87d8b1416344d21ba84cfb66ae2a /asl/meta/BUILD.bazel
parent4698812fdc2d9eeea03f26307d6e7e626aaec12b (diff)
More work on taxonomy
Diffstat (limited to 'asl/meta/BUILD.bazel')
-rw-r--r--asl/meta/BUILD.bazel17
1 files changed, 13 insertions, 4 deletions
diff --git a/asl/meta/BUILD.bazel b/asl/meta/BUILD.bazel
index f914bf3..e5b44a7 100644
--- a/asl/meta/BUILD.bazel
+++ b/asl/meta/BUILD.bazel
@@ -1,18 +1,27 @@
cc_library(
name = "meta",
hdrs = [
+ "empty.hpp",
+ "funcs.hpp",
+ "quals.hpp",
+ "refs.hpp",
"types.hpp",
],
+ srcs = [
+ "internal/quals.hpp",
+ "internal/refs.hpp",
+ "internal/types.hpp",
+ ],
visibility = ["//visibility:public"],
)
-cc_test(
- name = "types_tests",
+[cc_test(
+ name = "%s_tests" % name,
srcs = [
- "types_tests.cpp",
+ "%s_tests.cpp" % name,
],
deps = [
":meta",
],
-)
+) for name in ["empty", "quals", "refs", "types", "funcs"]]