diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-10-11 00:32:49 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | f011d871ef3af26c8f4e19de2c8d781c601ceffb (patch) | |
tree | ac3611e6fa054cc0f8870aad524b263ff917057f /asl/BUILD.bazel | |
parent | e020805cb140ed98d09e606a867b910fce78ad15 (diff) |
Add console printing
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel index 5137c8f..f904624 100644 --- a/asl/BUILD.bazel +++ b/asl/BUILD.bazel @@ -5,15 +5,18 @@ cc_library( "assert.hpp",
"format.hpp",
"integers.hpp",
+ "io.hpp",
"layout.hpp",
"maybe_uninit.hpp",
"memory.hpp",
"meta.hpp",
"option.hpp",
+ "print.hpp",
"utility.hpp",
],
srcs = [
"format.cpp",
+ "print_win32.cpp",
],
visibility = ["//visibility:public"],
)
|