diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-12 23:34:47 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-12 23:34:47 +0100 |
commit | cb77cbe9ce4cddad6a460aa190ff70f0c13e4703 (patch) | |
tree | eb63a44f6264893ba803ff27db2faa59d644b0e9 /asl/logging/BUILD.bazel | |
parent | e297b4182b735d97d5251361854acd2fccb03013 (diff) |
Rename log to logging
Diffstat (limited to 'asl/logging/BUILD.bazel')
-rw-r--r-- | asl/logging/BUILD.bazel | 26 |
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"], +) + |