diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-26 00:01:31 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-26 00:01:31 +0100 |
commit | 79aaec3d7d12bc1a0483f19eadeda325a2d65920 (patch) | |
tree | 5708cb5a00df8565508ff7e85821092bd829ece9 /asl | |
parent | deecf07bd1feadf76aadba127c7b64f931800c20 (diff) |
Initial log module
But I have some stuff to do first...
Diffstat (limited to 'asl')
-rw-r--r-- | asl/log/BUILD.bazel | 26 | ||||
-rw-r--r-- | asl/log/log.cpp | 0 | ||||
-rw-r--r-- | asl/log/log.hpp | 0 | ||||
-rw-r--r-- | asl/log/log_tests.cpp | 0 |
4 files changed, 26 insertions, 0 deletions
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 --- /dev/null +++ b/asl/log/log.cpp diff --git a/asl/log/log.hpp b/asl/log/log.hpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/asl/log/log.hpp diff --git a/asl/log/log_tests.cpp b/asl/log/log_tests.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/asl/log/log_tests.cpp |