mirror of
https://github.com/fluencelabs/sqlite-wasm-connector
synced 2025-03-16 06:50:49 +00:00
10 lines
217 B
Rust
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);
|
||
|
}
|
||
|
}
|
||
|
}
|