aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: e8f4b3a96974eb9a4e1441759c8a11df2bfd8390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
cc_library {
    name: "fmtlib",
    srcs: ["fmt/format.cc"],
    cflags: [
        "-std=c++11",
        "-fno-exceptions",
    ],
    sanitize: {
        misc_undefined: ["integer"],
    },
    local_include_dirs: ["."],
    export_include_dirs: ["."],
}