Skip to content

Commit 30863c3

Browse files
committed
WiX: simplify the per-SDK variables and use shared strings
Reduce the configuration axis for the SDKs to a triple, architecture, and Swift module triple (specifically to support Android). Use the shared strings in the shared library to allow easier localisation.
1 parent 647fe54 commit 30863c3

File tree

3 files changed

+182
-181
lines changed

3 files changed

+182
-181
lines changed

platforms/Windows/Directory.Build.props

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@
7777
<SDK_ROOT>$(SDK_ROOT_AMD64)</SDK_ROOT>
7878
</PropertyGroup>
7979

80+
<PropertyGroup Condition=" '$(ProductArchitecture)' == 'arm' ">
81+
<PLATFORM_ROOT>$(PLATFORM_ROOT_ARM)</PLATFORM_ROOT>
82+
<SDK_ROOT>$(SDK_ROOT_ARM)</SDK_ROOT>
83+
</PropertyGroup>
84+
8085
<PropertyGroup Condition=" '$(ProductArchitecture)' == 'arm64' ">
8186
<PLATFORM_ROOT>$(PLATFORM_ROOT_ARM64)</PLATFORM_ROOT>
8287
<SDK_ROOT>$(SDK_ROOT_ARM64)</SDK_ROOT>

0 commit comments

Comments
 (0)