Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.rs « closedcaption « video - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c866594fcfa61d7ae3e03054e19880b67982fa1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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");
}