@@ -3099,14 +3099,7 @@ function Install-SDK([Hashtable[]] $Platforms, [OS] $OS = $Platforms[0].OS, [str
3099
3099
}
3100
3100
3101
3101
function Build-SDK ([Hashtable ] $Platform ) {
3102
- if ($IncludeDS2 ) {
3103
- Invoke-BuildStep Build-DS2 $Platform
3104
- }
3105
-
3106
3102
# Third Party Dependencies
3107
- Invoke-BuildStep Build-ZLib $Platform
3108
- Invoke-BuildStep Build-XML2 $Platform
3109
- Invoke-BuildStep Build-CURL $Platform
3110
3103
Invoke-BuildStep Build-LLVM $Platform
3111
3104
3112
3105
# Libraries
@@ -3941,6 +3934,16 @@ if (-not $SkipBuild) {
3941
3934
SwiftSyntax_DIR = (Get-ProjectCMakeModules $BuildPlatform Compilers);
3942
3935
}
3943
3936
3937
+ foreach ($Build in $WindowsSDKBuilds ) {
3938
+ if ($IncludeDS2 ) {
3939
+ Invoke-BuildStep Build-DS2 $Build
3940
+ }
3941
+
3942
+ Invoke-BuildStep Build-ZLib $Build
3943
+ Invoke-BuildStep Build-XML2 $Build
3944
+ Invoke-BuildStep Build-CURL $Build
3945
+ }
3946
+
3944
3947
foreach ($SDK in $WindowsSDKVersions ) {
3945
3948
switch ($SDK ) {
3946
3949
Windows {
@@ -3989,6 +3992,16 @@ if (-not $SkipBuild) {
3989
3992
Write-PlatformInfoPlist Windows
3990
3993
3991
3994
if ($Android ) {
3995
+ foreach ($Build in $AndroidSDKBuilds ) {
3996
+ if ($IncludeDS2 ) {
3997
+ Invoke-BuildStep Build-DS2 $Build
3998
+ }
3999
+
4000
+ Invoke-BuildStep Build-ZLib $Build
4001
+ Invoke-BuildStep Build-XML2 $Build
4002
+ Invoke-BuildStep Build-CURL $Build
4003
+ }
4004
+
3992
4005
foreach ($SDK in $AndroidSDKVersions ) {
3993
4006
switch ($SDK ) {
3994
4007
Android {
0 commit comments