10 lines
217 B
Rust
Raw Normal View History

2015-08-01 13:55:22 -04:00
use std::env;
fn main() {
if let Ok(features) = env::var("DEP_SQLITE3_FEATURES") {
for feature in features.split(' ') {
println!(r#"cargo:rustc-cfg=feature="{}""#, feature);
}
}
}