view rust/chg/build.rs @ 40549:2e09d1cae90c

logtoprocess: use new runbgcommand from procutil Differential Revision: https://phab.mercurial-scm.org/D4939
author Augie Fackler <augie@google.com>
date Wed, 03 Oct 2018 14:01:22 -0400
parents cd490ac908c0
children 1f5ab1a9363d
line wrap: on
line source

extern crate cc;

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