view rust/chg/build.rs @ 49392:34e15bbab67c stable

mergestate: action name was str Apparently the standard for them is still to use byte strings. Found while looking at something else
author Georges Racinet <georges.racinet@octobus.net>
date Tue, 19 Jul 2022 12:41:46 +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");
}