Add more information when running with verbose output

This commit is contained in:
Roey Darwish Dror
2020-02-26 12:27:58 +02:00
parent 6dbb6172b3
commit 6756b02cb0
2 changed files with 13 additions and 0 deletions

6
build.rs Normal file
View File

@@ -0,0 +1,6 @@
fn main() {
println!(
"cargo:rustc-env=TARGET={}",
std::env::var("TARGET").unwrap()
);
}