13 lines
257 B
Text
13 lines
257 B
Text
cc_library {
|
|
name: "fmtlib",
|
|
srcs: ["fmt/format.cc"],
|
|
cflags: [
|
|
"-std=c++11",
|
|
"-fno-exceptions",
|
|
],
|
|
sanitize: {
|
|
misc_undefined: ["integer"],
|
|
},
|
|
local_include_dirs: ["."],
|
|
export_include_dirs: ["."],
|
|
}
|