diff --git a/support/bazel/BUILD.bazel b/support/bazel/BUILD.bazel index 000b5a1d..7fc6c81a 100644 --- a/support/bazel/BUILD.bazel +++ b/support/bazel/BUILD.bazel @@ -5,21 +5,9 @@ cc_library( "src/format.cc", "src/os.cc", ], - hdrs = [ - "include/fmt/args.h", - "include/fmt/chrono.h", - "include/fmt/color.h", - "include/fmt/compile.h", - "include/fmt/core.h", - "include/fmt/format.h", - "include/fmt/format-inl.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", - ], + hdrs = glob([ + "include/fmt/*.h", + ]), includes = [ "include", ],