cargo/crates/cargo-test-support/build.rs

8 lines
167 B
Rust
Raw Normal View History

fn main() {
println!(
"cargo:rustc-env=NATIVE_ARCH={}",
std::env::var("TARGET").unwrap()
);
2023-01-14 22:48:53 +00:00
println!("cargo:rerun-if-changed=build.rs");
}