view rust/chg/build.rs @ 40870:d3d52cc91e83

py3: byteify test-push-race.t
author Matt Harbison <matt_harbison@yahoo.com>
date Sun, 09 Dec 2018 13:53:08 -0500
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");
}