cargo-binstall/build.rs
Félix Saparelli a12e934940
Format
2022-02-16 00:14:51 +13:00

7 lines
168 B
Rust

// Fetch build target and define this for the compiler
fn main() {
println!(
"cargo:rustc-env=TARGET={}",
std::env::var("TARGET").unwrap()
);
}