Skip to content

Commit 57b2ad5

Browse files
committed
WiX: package the experimental runtime builds
This packages the experimental runtime builds to allow us to statically link against the standard library. This will be used to allow us to bootstrap the early swift-driver on Windows.
1 parent 1a54b6b commit 57b2ad5

File tree

3 files changed

+960
-0
lines changed

3 files changed

+960
-0
lines changed

platforms/Windows/platforms/windows/windows.wixproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,14 @@
1010
IncludeARM64=$(WindowsArchitectures.Contains("aarch64"));
1111
IncludeX64=$(WindowsArchitectures.Contains("x86_64"));
1212
IncludeX86=$(WindowsArchitectures.Contains("i686"));
13+
IncludeExperimentalSDK=$(IncludeExperimentalSDK);
1314
</DefineConstants>
1415
</PropertyGroup>
1516

17+
<PropertyGroup Condition=" '$(IncludeExperimentalSDK)' == '' ">
18+
<IncludeExperimentalSDK>False</IncludeExperimentalSDK>
19+
</PropertyGroup>
20+
1621
<ItemGroup>
1722
<PackageReference Include="WixToolset.Heat" Version="4.0.5" />
1823
</ItemGroup>

0 commit comments

Comments
 (0)