diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-04 22:05:06 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-04 22:05:06 +0200 |
commit | f3ba19b162a89b2081c0598b4a0bf126146e3671 (patch) | |
tree | e6c82af3ad5c7ea5e11aa6381822bfc8e68dd5fd /deimos/core/BUILD | |
parent | 3320960992afe36f4b6306130c6327e084c381b2 (diff) |
Add logging system
Diffstat (limited to 'deimos/core/BUILD')
-rw-r--r-- | deimos/core/BUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/deimos/core/BUILD b/deimos/core/BUILD index fcedb22..08f1ada 100644 --- a/deimos/core/BUILD +++ b/deimos/core/BUILD @@ -8,6 +8,7 @@ cc_library( "hash.h",
"id_name.h",
"io.h",
+ "log.h",
"os.h",
"std.h",
"format.h",
@@ -15,8 +16,10 @@ cc_library( srcs = [
"allocator.cpp",
"api_registry.cpp",
- "os_win32.cpp",
"format.cpp",
+ "io.cpp",
+ "log.cpp",
+ "os_win32.cpp",
],
visibility = ["//:__subpackages__"],
)
|