rust/chg/build.rs
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 30 May 2023 16:33:28 +0100
changeset 50676 6b522a9e7451
parent 44689 1f5ab1a9363d
permissions -rw-r--r--
store: have the revlog determine which files are volatile itself This is a first step toward simplifying the walk step.

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