mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
8 lines
228 B
Rust
8 lines
228 B
Rust
fn main() {
|
|
let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap();
|
|
let target_env = std::env::var("CARGO_CFG_TARGET_ENV").unwrap();
|
|
if target_os == "windows" && target_env == "gnu" {
|
|
napi_build::setup();
|
|
}
|
|
}
|