ffmpeg-the-third/build.rs
2015-12-03 19:15:32 +01:00

11 lines
220 B
Rust

use std::env;
fn main() {
for (name, _value) in env::vars() {
if name.starts_with("DEP_FFMPEG_") {
println!(r#"cargo:rustc-cfg=feature="{}""#,
name["DEP_FFMPEG_".len() .. name.len()].to_lowercase());
}
}
}