Skip to content

Commit efc3170

Browse files
committed
build.ps1: change default for -Windows to $False
This disables the Windows SDK by default. Windows SDKs can still be built by passing `-Windows` to `build.ps1`. This is already present in the invocation used by CI.
1 parent a956308 commit efc3170

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ param
195195
[string] $AndroidSDKVersionDefault = "Android",
196196

197197
# Windows SDK Options
198-
[switch] $Windows = $true,
198+
[switch] $Windows = $false,
199199
[ValidatePattern("^\d+\.\d+\.\d+(?:-\w+)?")]
200200
[string] $WinSDKVersion = "",
201201
[string[]] $WindowsSDKArchitectures = @("X64","X86","Arm64"),

0 commit comments

Comments
 (0)