Skip to content

Commit 712b0dc

Browse files
committed
build script: make SourceCache a parameter
This allows re-rooting the source cache root.
1 parent 0aa5268 commit 712b0dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
# Copyright 2023 Tristan Labelle <[email protected]>
33

44
param(
5-
[string[]] $SDKs = @("X64","X86","Arm64")
5+
[string[]] $SDKs = @("X64","X86","Arm64"),
6+
[string] $SourceCache = "S:\SourceCache"
67
)
78

89
$ErrorActionPreference = "Stop"
910
Set-StrictMode -Version 3.0
1011

11-
$SourceCache = "S:\SourceCache"
1212
$BinaryCache = "S:\b"
1313
$InstallRoot = "S:\Library"
1414
$ToolchainInstallRoot = "$InstallRoot\Developer\Toolchains\unknown-Asserts-development.xctoolchain"

0 commit comments

Comments
 (0)