presave before repo split

This commit is contained in:
2026-03-11 21:26:08 +07:00
parent 8d0eccdbc2
commit a391d0f43e
30 changed files with 753 additions and 136 deletions
-12
View File
@@ -1,15 +1,3 @@
fn main() {
let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
println!("cargo:warning=MANIFEST_DIR is: {}", manifest_dir);
let path = std::path::Path::new(&manifest_dir).join("../../gen/arm64-v8a");
println!(
"cargo:warning=LINKER_SEARCH_PATH is: {:?}",
path.canonicalize()
);
println!("cargo:rustc-link-search=native={}", path.display());
println!("cargo:rustc-link-lib=dylib=netrunner_client");
tauri_build::build();
}