You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
439 B
23 lines
439 B
cc_library_static { |
|
name: "libvterm", |
|
|
|
export_include_dirs: ["include"], |
|
|
|
srcs: [ |
|
"src/input.c", |
|
"src/vterm.c", |
|
"src/encoding.c", |
|
"src/parser.c", |
|
"src/unicode.c", |
|
"src/pen.c", |
|
"src/screen.c", |
|
"src/state.c", |
|
], |
|
|
|
cflags: [ |
|
"-std=c99", |
|
"-Wno-missing-field-initializers", |
|
"-Wno-sign-compare", |
|
"-Wno-unused-parameter", |
|
], |
|
}
|
|
|