cargo-binstall/build.rs
2020-12-14 20:43:51 +13:00

8 lines
169 B
Rust

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