view rust/chg/build.rs @ 42539:5c64d0b4c037

shelve: removed redundant merge detection method Differential Revision: https://phab.mercurial-scm.org/D6547
author Taapas Agrawal <taapas2897@gmail.com>
date Thu, 20 Jun 2019 00:59:16 +0530
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");
}