mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 02:29:08 +00:00
21 lines
495 B
Python
21 lines
495 B
Python
cc_library(
|
|
name = "fmt",
|
|
srcs = [
|
|
#"src/fmt.cc", # No C++ module support, yet in Bazel (https://github.com/bazelbuild/bazel/pull/19940)
|
|
"src/format.cc",
|
|
"src/os.cc",
|
|
],
|
|
hdrs = glob([
|
|
"include/fmt/*.h",
|
|
]),
|
|
copts = select({
|
|
"@platforms//os:windows": ["-utf-8"],
|
|
"//conditions:default": [],
|
|
}),
|
|
includes = [
|
|
"include",
|
|
],
|
|
strip_include_prefix = "include",
|
|
visibility = ["//visibility:public"],
|
|
)
|