Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
0aaadd1260
@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>com.apple.security.app-sandbox</key>
|
<key>com.apple.security.app-sandbox</key>
|
||||||
<true/>
|
<false/>
|
||||||
<key>com.apple.security.cs.allow-jit</key>
|
<key>com.apple.security.cs.allow-jit</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.network.server</key>
|
<key>com.apple.security.network.server</key>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>com.apple.security.app-sandbox</key>
|
<key>com.apple.security.app-sandbox</key>
|
||||||
<true/>
|
<false/>
|
||||||
<key>com.apple.security.network.client</key>
|
<key>com.apple.security.network.client</key>
|
||||||
<true/>
|
<true/>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -13,7 +13,13 @@ fn link_vcpkg(mut path: PathBuf, name: &str) -> PathBuf {
|
|||||||
target_arch = "arm64".to_owned();
|
target_arch = "arm64".to_owned();
|
||||||
}
|
}
|
||||||
let mut target = if target_os == "macos" {
|
let mut target = if target_os == "macos" {
|
||||||
"x64-osx".to_owned()
|
if target_arch == "x64" {
|
||||||
|
"x64-osx".to_owned()
|
||||||
|
} else if target_arch == "arm64"{
|
||||||
|
"arm64-osx".to_owned()
|
||||||
|
} else {
|
||||||
|
format!("{}-{}", target_arch, target_os)
|
||||||
|
}
|
||||||
} else if target_os == "windows" {
|
} else if target_os == "windows" {
|
||||||
"x64-windows-static".to_owned()
|
"x64-windows-static".to_owned()
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user