mirror of
https://github.com/microsoft/vcpkg
synced 2024-11-20 16:06:00 -07:00
Fix for VcpkgPlatformTarget default fails for ARM, ARM64, ARM64EC (#42182)
This commit is contained in:
parent
f37984ff74
commit
3203d48203
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(VcpkgPlatformTarget)' == ''">
|
<PropertyGroup Condition="'$(VcpkgPlatformTarget)' == ''">
|
||||||
<VcpkgPlatformTarget>$(Platform)</VcpkgPlatformTarget>
|
<VcpkgPlatformTarget>$(Platform.ToLower())</VcpkgPlatformTarget>
|
||||||
<VcpkgPlatformTarget Condition="'$(Platform)' == 'Win32'">x86</VcpkgPlatformTarget>
|
<VcpkgPlatformTarget Condition="'$(VcpkgPlatformTarget)' == 'win32'">x86</VcpkgPlatformTarget>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
Loading…
Reference in a new issue