summaryrefslogtreecommitdiff
path: root/asl
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-26 00:01:31 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-26 00:01:31 +0100
commit79aaec3d7d12bc1a0483f19eadeda325a2d65920 (patch)
tree5708cb5a00df8565508ff7e85821092bd829ece9 /asl
parentdeecf07bd1feadf76aadba127c7b64f931800c20 (diff)
Initial log module
But I have some stuff to do first...
Diffstat (limited to 'asl')
-rw-r--r--asl/log/BUILD.bazel26
-rw-r--r--asl/log/log.cpp0
-rw-r--r--asl/log/log.hpp0
-rw-r--r--asl/log/log_tests.cpp0
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