2018-06-15 14:40:34 +02:00

6 lines
101 B
Rust

use std::env;
fn main() {
println!("cargo:rustc-env=TARGET={}", env::var("TARGET").unwrap());
}