view rust/chg/build.rs @ 50715:271a4ab29605 stable 6.4.5

relnotes: add 6.4.5
author Raphaël Gomès <rgomes@octobus.net>
date Thu, 22 Jun 2023 11:17:40 +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");
}