mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-10-31 22:58:51 +00:00
13 lines
348 B
Rust
13 lines
348 B
Rust
fn main() {
|
|
gst_plugin_version_helper::info();
|
|
|
|
cc::Build::new()
|
|
.file("src/c/caption.c")
|
|
.file("src/c/eia608.c")
|
|
.file("src/c/eia608_charmap.c")
|
|
.file("src/c/eia608_from_utf8.c")
|
|
.file("src/c/utf8.c")
|
|
.file("src/c/xds.c")
|
|
.extra_warnings(false)
|
|
.compile("libcaption-c.a");
|
|
}
|