rust/chg/build.rs
author Augie Fackler <augie@google.com>
Sat, 13 Oct 2018 08:54:44 -0400
changeset 40260 b54d93fc3ba8
parent 40118 cd490ac908c0
child 44688 1f5ab1a9363d
permissions -rw-r--r--
simplemerge: port to Python 3 Differential Revision: https://phab.mercurial-scm.org/D5081

extern crate cc;

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