view rust/chg/build.rs @ 52305:79e8118cd846

rust-lib: move `Dirstate*Error` to the `dirstate` module That's where they belong and should always have been there.
author Raphaël Gomès <rgomes@octobus.net>
date Mon, 04 Nov 2024 11:18:36 +0100
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");
}