dolphin/Externals/fmt/support/bazel/BUILD.bazel

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
705 B
Python
Raw Normal View History

2022-01-13 00:10:07 +00:00
cc_library(
name = "fmt",
srcs = [
#"src/fmt.cc", # No C++ module support
"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-inl.h",
2022-10-06 02:04:42 +00:00
"include/fmt/format.h",
2022-01-13 00:10:07 +00:00
"include/fmt/os.h",
"include/fmt/ostream.h",
"include/fmt/printf.h",
"include/fmt/ranges.h",
2022-10-06 02:04:42 +00:00
"include/fmt/std.h",
2022-01-13 00:10:07 +00:00
"include/fmt/xchar.h",
],
includes = [
2022-10-06 02:04:42 +00:00
"include",
2022-01-13 00:10:07 +00:00
],
strip_include_prefix = "include",
visibility = ["//visibility:public"],
)