From f011d871ef3af26c8f4e19de2c8d781c601ceffb Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Fri, 11 Oct 2024 00:32:49 +0200 Subject: Add console printing --- asl/BUILD.bazel | 3 +++ 1 file changed, 3 insertions(+) (limited to 'asl/BUILD.bazel') 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"], ) -- cgit