view rust/chg/build.rs @ 50837:07c6a085fad7

heads: migrate `opts` to native kwargs
author Matt Harbison <matt_harbison@yahoo.com>
date Sun, 20 Aug 2023 01:20:59 -0400
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");
}