Bazel support: Switch to globbing to collect header files

This commit is contained in:
Vertexwahn 2024-01-10 20:19:06 +01:00 committed by Victor Zverovich
parent da7a232b9e
commit 6159e2b0ab

View File

@ -5,21 +5,9 @@ cc_library(
"src/format.cc", "src/format.cc",
"src/os.cc", "src/os.cc",
], ],
hdrs = [ hdrs = glob([
"include/fmt/args.h", "include/fmt/*.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",
],
includes = [ includes = [
"include", "include",
], ],