view rust/chg/build.rs @ 49538:b51e5c2ab5fd stable

rhg: add a test involving hgignore lookaround
author Arseniy Alekseyev <aalekseyev@janestreet.com>
date Mon, 31 Oct 2022 16:15:30 +0000
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");
}