From 27e4d51a5d62e18459bbe8ad74d0824017d5e8de Mon Sep 17 00:00:00 2001 From: Julian Amann Date: Mon, 30 May 2022 23:08:01 +0200 Subject: [PATCH] Add support for std.h in Bazel build --- support/bazel/.bazelversion | 2 +- support/bazel/BUILD.bazel | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/support/bazel/.bazelversion b/support/bazel/.bazelversion index 0062ac971805..ac14c3dfaa86 100644 --- a/support/bazel/.bazelversion +++ b/support/bazel/.bazelversion @@ -1 +1 @@ -5.0.0 +5.1.1 diff --git a/support/bazel/BUILD.bazel b/support/bazel/BUILD.bazel index 3380bbcab210..085765890261 100644 --- a/support/bazel/BUILD.bazel +++ b/support/bazel/BUILD.bazel @@ -11,18 +11,17 @@ cc_library( "include/fmt/color.h", "include/fmt/compile.h", "include/fmt/core.h", - "include/fmt/format.h", "include/fmt/format-inl.h", - "include/fmt/locale.h", + "include/fmt/format.h", "include/fmt/os.h", "include/fmt/ostream.h", "include/fmt/printf.h", "include/fmt/ranges.h", + "include/fmt/std.h", "include/fmt/xchar.h", ], includes = [ - "include", - "src", + "include", ], strip_include_prefix = "include", visibility = ["//visibility:public"],