Skip to content

Commit d1fbaa8

Browse files
committed
WiX: package up Distributed in the experimental SDK
Include the new build of Distributed into the static experimental SDK.
1 parent be72f2b commit d1fbaa8

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

platforms/Windows/platforms/windows/windows.wxs

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@
206206
<Directory Id="lib_StringProcessing.swiftmodule" Name="_StringProcessing.swiftmodule" />
207207
<Directory Id="libCRT.swiftmodule" Name="CRT.swiftmodule" />
208208
<Directory Id="libDispatch.swiftmodule" Name="Dispatch.swiftmodule" />
209+
<Directory Id="libDistributed.swiftmodule" Name="Distributed.swiftmodule" />
209210
<Directory Id="libFoundation.swiftmodule" Name="Foundation.swiftmodule" />
210211
<Directory Id="libFoundationEssentials.swiftmodule" Name="FoundationEssentials.swiftmodule" />
211212
<Directory Id="libFoundationInternationalization.swiftmodule" Name="FoundationInternationalization.swiftmodule" />
@@ -1470,6 +1471,49 @@
14701471
</ComponentGroup>
14711472
<?endif?>
14721473

1474+
<?if $(IncludeARM64) = True?>
1475+
<ComponentGroup Id="libDistributed.arm64" Directory="libDistributed.swiftmodule">
1476+
<Component DiskId="6">
1477+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\aarch64-unknown-windows-msvc.swiftdoc" />
1478+
</Component>
1479+
<Component DiskId="6">
1480+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\aarch64-unknown-windows-msvc.swiftmodule" />
1481+
</Component>
1482+
1483+
<Component Directory="WindowsExperimentalSDK_usr_lib_swift_static_windows_arm64">
1484+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\aarch64\swiftDistributed.lib" />
1485+
</Component>
1486+
</ComponentGroup>
1487+
<?endif?>
1488+
<?if $(IncludeX64) = True?>
1489+
<ComponentGroup Id="libDistributed.x64" Directory="libDistributed.swiftmodule">
1490+
<Component DiskId="7">
1491+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\x86_64-unknown-windows-msvc.swiftdoc" />
1492+
</Component>
1493+
<Component DiskId="7">
1494+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\x86_64-unknown-windows-msvc.swiftmodule" />
1495+
</Component>
1496+
1497+
<Component Directory="WindowsExperimentalSDK_usr_lib_swift_static_windows_x64">
1498+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\x86_64\swiftDistributed.lib" />
1499+
</Component>
1500+
</ComponentGroup>
1501+
<?endif?>
1502+
<?if $(IncludeX86) = True?>
1503+
<ComponentGroup Id="libDistributed.x86" Directory="libDistributed.swiftmodule">
1504+
<Component DiskId="8">
1505+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\i686-unknown-windows-msvc.swiftdoc" />
1506+
</Component>
1507+
<Component DiskId="8">
1508+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\i686-unknown-windows-msvc.swiftmodule" />
1509+
</Component>
1510+
1511+
<Component Directory="WindowsExperimentalSDK_usr_lib_swift_windows_x86">
1512+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\i686\swiftDistributed.lib" />
1513+
</Component>
1514+
</ComponentGroup>
1515+
<?endif?>
1516+
14731517
<!-- _FoundationCollections -->
14741518
<?if $(IncludeARM64) = True?>
14751519
<ComponentGroup Id="_FoundationCollections.arm64" Directory="_FoundationCollections.swiftmodule">
@@ -2902,6 +2946,7 @@
29022946
<ComponentGroupRef Id="lib_StringProcessing.arm64" />
29032947
<ComponentGroupRef Id="libBlocksRuntime.arm64" />
29042948
<ComponentGroupRef Id="libCRT.arm64" />
2949+
<ComponentGroupRef Id="libDistributed.arm64" />
29052950
<ComponentGroupRef Id="libdispatch.arm64" />
29062951
<ComponentGroupRef Id="libFoundation.arm64" />
29072952
<ComponentGroupRef Id="libFoundationEssentials.arm64" />
@@ -2933,6 +2978,7 @@
29332978
<ComponentGroupRef Id="lib_StringProcessing.x64" />
29342979
<ComponentGroupRef Id="libBlocksRuntime.x64" />
29352980
<ComponentGroupRef Id="libCRT.x64" />
2981+
<ComponentGroupRef Id="libDistributed.x64" />
29362982
<ComponentGroupRef Id="libdispatch.x64" />
29372983
<ComponentGroupRef Id="libFoundation.x64" />
29382984
<ComponentGroupRef Id="libFoundationEssentials.x64" />
@@ -2964,6 +3010,7 @@
29643010
<ComponentGroupRef Id="lib_StringProcessing.x86" />
29653011
<ComponentGroupRef Id="libBlocksRuntime.x86" />
29663012
<ComponentGroupRef Id="libCRT.x86" />
3013+
<ComponentGroupRef Id="libDistributed.x86" />
29673014
<ComponentGroupRef Id="libdispatch.x86" />
29683015
<ComponentGroupRef Id="libFoundation.x86" />
29693016
<ComponentGroupRef Id="libFoundationEssentials.x86" />

0 commit comments

Comments
 (0)