rust/chg/build.rs
author Yuya Nishihara <yuya@tcha.org>
Sun, 07 Oct 2018 16:46:30 +0900
changeset 44682 00ac60658654
parent 40119 cd490ac908c0
child 44689 1f5ab1a9363d
permissions -rw-r--r--
rust-chg: collect server flags from command arguments This is the reimplementation of testsensitiveflag() and setcmdserverargs() of chg.c. Differential Revision: https://phab.mercurial-scm.org/D8380

extern crate cc;

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