comparison dep/fmt/support/bazel/BUILD.bazel @ 343:1faa72660932

*: transfer back to cmake from autotools autotools just made lots of things more complicated than they should have and many things broke (i.e. translations)
author Paper <paper@paper.us.eu.org>
date Thu, 20 Jun 2024 05:56:06 -0400
parents
children
comparison
equal deleted inserted replaced
342:adb79bdde329 343:1faa72660932
1 cc_library(
2 name = "fmt",
3 srcs = [
4 #"src/fmt.cc", # No C++ module support
5 "src/format.cc",
6 "src/os.cc",
7 ],
8 hdrs = [
9 "include/fmt/args.h",
10 "include/fmt/chrono.h",
11 "include/fmt/color.h",
12 "include/fmt/compile.h",
13 "include/fmt/core.h",
14 "include/fmt/format.h",
15 "include/fmt/format-inl.h",
16 "include/fmt/os.h",
17 "include/fmt/ostream.h",
18 "include/fmt/printf.h",
19 "include/fmt/ranges.h",
20 "include/fmt/std.h",
21 "include/fmt/xchar.h",
22 ],
23 includes = [
24 "include",
25 ],
26 strip_include_prefix = "include",
27 visibility = ["//visibility:public"],
28 )