rust/chg/build.rs
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 09 Nov 2022 13:54:15 -0500
changeset 49785 92c65bd0c4d6
parent 44689 1f5ab1a9363d
permissions -rw-r--r--
sqlitestore: add an `ancestors` method We will need it during bundling. The implementation mirror the one in revlog.

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