Initial log module
But I have some stuff to do first...
This commit is contained in:
26
asl/log/BUILD.bazel
Normal file
26
asl/log/BUILD.bazel
Normal file
@ -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"],
|
||||
)
|
||||
|
0
asl/log/log.cpp
Normal file
0
asl/log/log.cpp
Normal file
0
asl/log/log.hpp
Normal file
0
asl/log/log.hpp
Normal file
0
asl/log/log_tests.cpp
Normal file
0
asl/log/log_tests.cpp
Normal file
Reference in New Issue
Block a user