From 79aaec3d7d12bc1a0483f19eadeda325a2d65920 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sun, 26 Jan 2025 00:01:31 +0100 Subject: Initial log module But I have some stuff to do first... --- asl/log/BUILD.bazel | 26 ++++++++++++++++++++++++++ asl/log/log.cpp | 0 asl/log/log.hpp | 0 asl/log/log_tests.cpp | 0 4 files changed, 26 insertions(+) create mode 100644 asl/log/BUILD.bazel create mode 100644 asl/log/log.cpp create mode 100644 asl/log/log.hpp create mode 100644 asl/log/log_tests.cpp (limited to 'asl') diff --git a/asl/log/BUILD.bazel b/asl/log/BUILD.bazel new file mode 100644 index 0000000..9aabf00 --- /dev/null +++ b/asl/log/BUILD.bazel @@ -0,0 +1,26 @@ +cc_library( + name = "log", + srcs = [ + "log.hpp", + ], + hdrs = [ + "log.cpp", + ], + deps = [ + "//asl", + ], + visibility = ["//visibility:public"], +) + +cc_test( + name = "tests", + srcs = [ + "log_tests.cpp" + ], + deps = [ + ":log", + "//asl/testing", + ], + visibility = ["//visibility:public"], +) + diff --git a/asl/log/log.cpp b/asl/log/log.cpp new file mode 100644 index 0000000..e69de29 diff --git a/asl/log/log.hpp b/asl/log/log.hpp new file mode 100644 index 0000000..e69de29 diff --git a/asl/log/log_tests.cpp b/asl/log/log_tests.cpp new file mode 100644 index 0000000..e69de29 -- cgit