Skip to content

Commit fc0375f

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

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" />
@@ -1471,6 +1472,49 @@
14711472
</ComponentGroup>
14721473
<?endif?>
14731474

1475+
<?if $(IncludeARM64) = True?>
1476+
<ComponentGroup Id="libDistributed.arm64" Directory="libDistributed.swiftmodule">
1477+
<Component DiskId="6">
1478+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\aarch64-unknown-windows-msvc.swiftdoc" />
1479+
</Component>
1480+
<Component DiskId="6">
1481+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\aarch64-unknown-windows-msvc.swiftmodule" />
1482+
</Component>
1483+
1484+
<Component Directory="WindowsExperimentalSDK_usr_lib_swift_static_windows_arm64">
1485+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\aarch64\libswiftDistributed.lib" />
1486+
</Component>
1487+
</ComponentGroup>
1488+
<?endif?>
1489+
<?if $(IncludeX64) = True?>
1490+
<ComponentGroup Id="libDistributed.x64" Directory="libDistributed.swiftmodule">
1491+
<Component DiskId="7">
1492+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\x86_64-unknown-windows-msvc.swiftdoc" />
1493+
</Component>
1494+
<Component DiskId="7">
1495+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\x86_64-unknown-windows-msvc.swiftmodule" />
1496+
</Component>
1497+
1498+
<Component Directory="WindowsExperimentalSDK_usr_lib_swift_static_windows_x64">
1499+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\x86_64\libswiftDistributed.lib" />
1500+
</Component>
1501+
</ComponentGroup>
1502+
<?endif?>
1503+
<?if $(IncludeX86) = True?>
1504+
<ComponentGroup Id="libDistributed.x86" Directory="libDistributed.swiftmodule">
1505+
<Component DiskId="8">
1506+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\i686-unknown-windows-msvc.swiftdoc" />
1507+
</Component>
1508+
<Component DiskId="8">
1509+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\Distributed.swiftmodule\i686-unknown-windows-msvc.swiftmodule" />
1510+
</Component>
1511+
1512+
<Component Directory="WindowsExperimentalSDK_usr_lib_swift_windows_x86">
1513+
<File Source="$(ExperimentalSDKRoot)\usr\lib\swift_static\windows\i686\libswiftDistributed.lib" />
1514+
</Component>
1515+
</ComponentGroup>
1516+
<?endif?>
1517+
14741518
<!-- _FoundationCollections -->
14751519
<?if $(IncludeARM64) = True?>
14761520
<ComponentGroup Id="_FoundationCollections.arm64" Directory="_FoundationCollections.swiftmodule">
@@ -2946,6 +2990,7 @@
29462990
<ComponentGroupRef Id="lib_StringProcessing.arm64" />
29472991
<ComponentGroupRef Id="libBlocksRuntime.arm64" />
29482992
<ComponentGroupRef Id="libCRT.arm64" />
2993+
<ComponentGroupRef Id="libDistributed.arm64" />
29492994
<ComponentGroupRef Id="libdispatch.arm64" />
29502995
<ComponentGroupRef Id="libFoundation.arm64" />
29512996
<ComponentGroupRef Id="libFoundationEssentials.arm64" />
@@ -2978,6 +3023,7 @@
29783023
<ComponentGroupRef Id="lib_StringProcessing.x64" />
29793024
<ComponentGroupRef Id="libBlocksRuntime.x64" />
29803025
<ComponentGroupRef Id="libCRT.x64" />
3026+
<ComponentGroupRef Id="libDistributed.x64" />
29813027
<ComponentGroupRef Id="libdispatch.x64" />
29823028
<ComponentGroupRef Id="libFoundation.x64" />
29833029
<ComponentGroupRef Id="libFoundationEssentials.x64" />
@@ -3010,6 +3056,7 @@
30103056
<ComponentGroupRef Id="lib_StringProcessing.x86" />
30113057
<ComponentGroupRef Id="libBlocksRuntime.x86" />
30123058
<ComponentGroupRef Id="libCRT.x86" />
3059+
<ComponentGroupRef Id="libDistributed.x86" />
30133060
<ComponentGroupRef Id="libdispatch.x86" />
30143061
<ComponentGroupRef Id="libFoundation.x86" />
30153062
<ComponentGroupRef Id="libFoundationEssentials.x86" />

0 commit comments

Comments
 (0)