view rust/chg/build.rs @ 41211:57bece69d7be

histedit: fix weird indent of i18n text
author Yuya Nishihara <yuya@tcha.org>
date Sun, 13 Jan 2019 14:44:44 +0900
parents cd490ac908c0
children 1f5ab1a9363d
line wrap: on
line source

extern crate cc;

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