rust/chg/build.rs
author Raphaël Gomès <rgomes@octobus.net>
Thu, 23 Dec 2021 14:49:28 +0100
changeset 48566 934a6213fee9
parent 44689 1f5ab1a9363d
permissions -rw-r--r--
dirstate: remove deprecated API Differential Revision: https://phab.mercurial-scm.org/D11953

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