Merge pull request #7 from dennisameling/windows-arm64

fix windows arm64 build
This commit is contained in:
RustDesk
2026-06-18 18:09:45 +08:00
committed by GitHub
+1 -1
View File
@@ -27,7 +27,7 @@ fn link_vcpkg(mut path: PathBuf, name: &str) -> PathBuf {
} else if target_os == "macos" && target_arch == "arm64" {
"arm64-osx".to_owned()
} else if target_os == "windows" {
"x64-windows-static".to_owned()
format!("{}-windows-static", target_arch)
} else {
format!("{}-{}", target_arch, target_os)
};