1 2 3 4 5 6 7
fn main() { if !cfg!(feature = "no_cc") { cc::Build::new() .file("src/hide.c") .compile("clear_on_drop"); } }