10 lines
225 B
Rust
10 lines
225 B
Rust
fn main() -> Result<(), std::env::VarError> {
|
|
let target_family = std::env::var("CARGO_CFG_TARGET_FAMILY")?;
|
|
|
|
if target_family != "wasm" {
|
|
println!("cargo:rustc-cfg=feature=\"local_fs\"");
|
|
}
|
|
|
|
Ok(())
|
|
}
|