1 2 3 4 5 6 7 8 9 10
use std::env; use std::path::PathBuf; fn main() { cc::Build::new() .define("OPPAI_IMPLEMENTATION", None) .files(&["oppai/oppai.c"]) .compile("oppai"); println!("cargo:rustc-link-lib=oppai"); }