2021-09-24 20:17:26 +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-05-30 21:08:01 +00:00
|
|
|
"include/fmt/format.h",
|
2021-09-24 20:17:26 +00:00
|
|
|
"include/fmt/os.h",
|
|
|
|
"include/fmt/ostream.h",
|
|
|
|
"include/fmt/printf.h",
|
|
|
|
"include/fmt/ranges.h",
|
2022-05-30 21:08:01 +00:00
|
|
|
"include/fmt/std.h",
|
2021-09-24 20:17:26 +00:00
|
|
|
"include/fmt/xchar.h",
|
|
|
|
],
|
|
|
|
includes = [
|
2022-05-30 21:08:01 +00:00
|
|
|
"include",
|
2021-09-24 20:17:26 +00:00
|
|
|
],
|
|
|
|
strip_include_prefix = "include",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|