Files

8 lines
176 B
Rust
Raw Permalink Normal View History

2026-03-15 14:51:29 +01:00
fn main() {
println!(
"cargo:rustc-env=TAURI_BUILD_TARGET={}",
std::env::var("TARGET").expect("TARGET not set by cargo")
);
tauri_build::build();
}