view rust/chg/build.rs @ 44979:2fd8a8c11273 stable

share: provide a more useful text for hg help Differential Revision: https://phab.mercurial-scm.org/D8651
author Joerg Sonnenberger <joerg@bec.de>
date Tue, 23 Jun 2020 16:07:18 +0200
parents 1f5ab1a9363d
children
line wrap: on
line source

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