Skip to content

Commit 8abc9ae

Browse files
authored
Add WixToolset.UI extension installation
Added installation of WixToolset.UI extension to setup script.
1 parent 71b82b2 commit 8abc9ae

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/windows/setup-dependencies.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Param(
2-
[string]$ClangVersion = '21.1.1'
2+
[string]$ClangVersion = '21.1.5'
33
)
44

55
Write-Host "=== Installing build dependencies on Windows ==="
@@ -28,7 +28,8 @@ sccache -s # show stats
2828
Write-Host "Installing CMake, Cppcheck and NSIS via winget..."
2929
winget install --accept-source-agreements --accept-package-agreements cmake cppcheck nsis
3030
# also get wix
31-
dotnet tool install --global wix --version 4.0.4
31+
dotnet tool install --tool-path C:\WiX wix --version 4.0.4
32+
wix extension add --global WixToolset.UI.wixext/4.0.4
3233
# get ninja
3334
Write-Host "Installing Ninja via winget..."
3435
winget install --accept-source-agreements --accept-package-agreements --id=Ninja-build.Ninja -e

0 commit comments

Comments
 (0)