Skip to content

Commit 73d417b

Browse files
authored
Merge pull request #67543 from tristanlabelle/move-wixproj-subdirs
Windows build: Update paths to wixprojs to their new location in subdirectories
2 parents c67f4ff + 1c5198a commit 73d417b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

utils/build-windows-toolchain.bat

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ endlocal
929929
setlocal enableextensions enabledelayedexpansion
930930

931931
:: Package bld.msi
932-
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\bld.wixproj ^
932+
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\bld\bld.wixproj ^
933933
-restore ^
934934
-p:Configuration=Release ^
935935
-p:IntermediateOutputPath=%PackageRoot%\bld\ ^
@@ -941,7 +941,7 @@ msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\bld.wixproj ^
941941
:: signtool sign /f Apple_CodeSign.pfx /p Apple_CodeSign_Password /tr http://timestamp.digicert.com /fd sha256 %PackageRoot%\bld\bld.msi
942942

943943
:: Package cli.msi
944-
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\cli.wixproj ^
944+
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\cli\cli.wixproj ^
945945
-restore ^
946946
-p:Configuration=Release ^
947947
-p:IntermediateOutputPath=%PackageRoot%\cli\ ^
@@ -953,7 +953,7 @@ msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\cli.wixproj ^
953953
:: signtool sign /f Apple_CodeSign.pfx /p Apple_CodeSign_Password /tr http://timestamp.digicert.com /fd sha256 %PackageRoot%\cli\cli.msi
954954

955955
:: Package dbg.msi
956-
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\dbg.wixproj ^
956+
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\dbg\dbg.wixproj ^
957957
-restore ^
958958
-p:Configuration=Release ^
959959
-p:IntermediateOutputPath=%PackageRoot%\dbg\ ^
@@ -965,7 +965,7 @@ msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\dbg.wixproj ^
965965
:: signtool sign /f Apple_CodeSign.pfx /p Apple_CodeSign_Password /tr http://timestamp.digicert.com /fd sha256 %PackageRoot%\dbg\dbg.msi
966966

967967
:: Package ide.msi
968-
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\ide.wixproj ^
968+
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\ide\ide.wixproj ^
969969
-restore ^
970970
-p:Configuration=Release ^
971971
-p:IntermediateOutputPath=%PackageRoot%\ide\ ^
@@ -977,7 +977,7 @@ msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\ide.wixproj ^
977977
:: signtool sign /f Apple_CodeSign.pfx /p Apple_CodeSign_Password /tr http://timestamp.digicert.com /fd sha256 %PackageRoot%\ide\ide.msi
978978

979979
:: Package sdk.msi
980-
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\sdk.wixproj ^
980+
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\sdk\sdk.wixproj ^
981981
-restore ^
982982
-p:Configuration=Release ^
983983
-p:IntermediateOutputPath=%PackageRoot%\sdk\ ^
@@ -989,7 +989,7 @@ msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\sdk.wixproj ^
989989
:: signtool sign /f Apple_CodeSign.pfx /p Apple_CodeSign_Password /tr http://timestamp.digicert.com /fd sha256 %PackageRoot%\sdk\sdk.msi
990990

991991
:: Package runtime.msi
992-
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\runtime.wixproj ^
992+
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\runtime\runtime.wixproj ^
993993
-restore ^
994994
-p:Configuration=Release ^
995995
-p:IntermediateOutputPath=%PackageRoot%\runtime\ ^
@@ -1008,7 +1008,7 @@ move %PackageRoot%\sdk\sdk.msi %PackageRoot% || (exit /b)
10081008
move %PackageRoot%\runtime\runtime.msi %PackageRoot% || (exit /b)
10091009

10101010
:: Build Installer
1011-
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\installer.wixproj ^
1011+
msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\bundle\installer.wixproj ^
10121012
-restore ^
10131013
-p:Configuration=Release ^
10141014
-p:IntermediateOutputPath=%PackageRoot%\installer\ ^

0 commit comments

Comments
 (0)