rust/chg/build.rs
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 13 Dec 2019 10:31:00 -0800
changeset 43950 5685ce2ea3bf
parent 40118 cd490ac908c0
child 44688 1f5ab1a9363d
permissions -rw-r--r--
match: normalize `cwd` early By having cwd in absolute form, we won't have to adjust it when passing it to subrepo matchers. This will matter for a coming patch. Differential Revision: https://phab.mercurial-scm.org/D7650

extern crate cc;

fn main() {
    cc::Build::new()
        .warnings(true)
        .file("src/sendfds.c")
        .file("src/sighandlers.c")
        .compile("procutil");
}