mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-23 01:46:18 +04:00
7 lines
119 B
Rust
7 lines
119 B
Rust
|
fn main() {
|
||
|
println!(
|
||
|
"cargo:rustc-env=BUILD_TARGET={}",
|
||
|
std::env::var("TARGET").unwrap()
|
||
|
);
|
||
|
}
|