2015-08-01 13:55:22 -04:00

10 lines
217 B
Rust

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);
}
}
}