blob: 33d3b755d7cccadef2576827e5eb07a9d2e81fe3 [file] [log] [blame]
Steven Morelandf6cc8262017-05-16 18:31:13 -07001cc_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",
Chih-Hung Hsieh3210a802017-09-28 14:55:17 -070019 "-Wall",
20 "-Werror",
Steven Morelandf6cc8262017-05-16 18:31:13 -070021 "-Wno-missing-field-initializers",
22 "-Wno-sign-compare",
Chih-Hung Hsieh3210a802017-09-28 14:55:17 -070023 "-Wno-unused-function",
Steven Morelandf6cc8262017-05-16 18:31:13 -070024 "-Wno-unused-parameter",
25 ],
26}