From cb77cbe9ce4cddad6a460aa190ff70f0c13e4703 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 12 Feb 2025 23:34:47 +0100 Subject: Rename log to logging --- asl/logging/BUILD.bazel | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 asl/logging/BUILD.bazel (limited to 'asl/logging/BUILD.bazel') 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"], +) + -- cgit