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