Home | History | Annotate | Download | only in libvterm
      1 cc_library_static {
      2     name: "libvterm",
      3 
      4     export_include_dirs: ["include"],
      5 
      6     srcs: [
      7         "src/input.c",
      8         "src/vterm.c",
      9         "src/encoding.c",
     10         "src/parser.c",
     11         "src/unicode.c",
     12         "src/pen.c",
     13         "src/screen.c",
     14         "src/state.c",
     15     ],
     16 
     17     cflags: [
     18         "-std=c99",
     19         "-Wall",
     20         "-Werror",
     21         "-Wno-missing-field-initializers",
     22         "-Wno-sign-compare",
     23         "-Wno-unused-function",
     24         "-Wno-unused-parameter",
     25     ],
     26 }
     27