view rust/chg/build.rs @ 40113:910eefeead82

help: document about "paths" template keywords
author Yuya Nishihara <yuya@tcha.org>
date Sun, 07 Oct 2018 23:00:50 +0900
parents 208cb7a9d0fa
children cd490ac908c0
line wrap: on
line source

extern crate cc;

fn main() {
    cc::Build::new()
        .warnings(true)
        .file("src/sendfds.c")
        .compile("procutil");
}