fix windows arm64 build

This commit is contained in:
Dennis Ameling
2026-05-28 16:37:48 +02:00
parent 5cd2bf989c
commit e1604256a8
+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" { } else if target_os == "macos" && target_arch == "arm64" {
"arm64-osx".to_owned() "arm64-osx".to_owned()
} else if target_os == "windows" { } else if target_os == "windows" {
"x64-windows-static".to_owned() format!("{}-windows-static", target_arch)
} else { } else {
format!("{}-{}", target_arch, target_os) format!("{}-{}", target_arch, target_os)
}; };