1 2 3 4 5 6 7 8 9 10 11 12
fn main() { if std::env::var("CARGO_FEATURE_TEST_C_INTEGRATION") .ok() .is_some() { cc::Build::new() .file("src/test_c_integration.c") .compile("test_c_integration"); } else { panic!("did not see it"); } }