2023-06-11 19:18:58 +05:00
|
|
|
fn main() {
|
2026-04-22 18:07:33 +03:00
|
|
|
let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
|
|
|
|
|
let lib_path = std::path::Path::new(&manifest_dir)
|
|
|
|
|
.join("..\\..\\lib\\windows\\amd64");
|
|
|
|
|
|
|
|
|
|
println!("cargo:rustc-link-search=native={}", lib_path.display());
|
|
|
|
|
|
2023-06-11 19:18:58 +05:00
|
|
|
tauri_build::build()
|
|
|
|
|
}
|