1 2 3 4 5 6 7 8
fn main() { cc::Build::new() .file("csrc/rand.c") .include("csrc") .opt_level(3) .warnings(false) .compile("isaac"); }