summaryrefslogtreecommitdiff
path: root/asl/logging/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-02-12 23:34:47 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-02-12 23:34:47 +0100
commitcb77cbe9ce4cddad6a460aa190ff70f0c13e4703 (patch)
treeeb63a44f6264893ba803ff27db2faa59d644b0e9 /asl/logging/BUILD.bazel
parente297b4182b735d97d5251361854acd2fccb03013 (diff)
Rename log to logging
Diffstat (limited to 'asl/logging/BUILD.bazel')
-rw-r--r--asl/logging/BUILD.bazel26
1 files changed, 26 insertions, 0 deletions
diff --git a/asl/logging/BUILD.bazel b/asl/logging/BUILD.bazel
new file mode 100644
index 0000000..396da74
--- /dev/null
+++ b/asl/logging/BUILD.bazel
@@ -0,0 +1,26 @@
+cc_library(
+ name = "logging",
+ srcs = [
+ "logging.cpp",
+ ],
+ hdrs = [
+ "logging.hpp",
+ ],
+ deps = [
+ "//asl",
+ ],
+ visibility = ["//visibility:public"],
+)
+
+cc_test(
+ name = "tests",
+ srcs = [
+ "logging_tests.cpp"
+ ],
+ deps = [
+ ":logging",
+ "//asl/testing",
+ ],
+ visibility = ["//visibility:public"],
+)
+