1 2 3 4 5 6 7 8
fn main() { println!("cargo:rerun-if-changed=src/lib.c"); cc::Build::new() .file("src/lib.c") .compile("libvsprintf.a"); }