Skip to content

Commit

Permalink
Bazel support: Switch to globbing to collect header files
Browse files Browse the repository at this point in the history
  • Loading branch information
Vertexwahn committed Jan 10, 2024
1 parent 6f5d53c commit ddc78ff
Show file tree
Hide file tree
Showing 2 changed files with 627 additions and 15 deletions.
18 changes: 3 additions & 15 deletions support/bazel/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
Expand Down
Loading

0 comments on commit ddc78ff

Please sign in to comment.