cargo/crates/cargo-test-support/build.rs
2023-11-16 11:35:21 -05:00

10 lines
206 B
Rust

#![allow(clippy::disallowed_methods)]
fn main() {
println!(
"cargo:rustc-env=NATIVE_ARCH={}",
std::env::var("TARGET").unwrap()
);
println!("cargo:rerun-if-changed=build.rs");
}