Skip to content

Commit db8a4bb

Browse files
authored
Merge pull request #76537 from rintaro/6.0-windows-testing-foundationdir
[6.0][Windows] Teach Build-Testing how to find Foundation
2 parents 8644d24 + a8accb8 commit db8a4bb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

utils/build.ps1

+4
Original file line numberDiff line numberDiff line change
@@ -1557,6 +1557,8 @@ function Build-XCTest([Platform]$Platform, $Arch, [switch]$Test = $false) {
15571557
}
15581558

15591559
function Build-SwiftTesting([Platform]$Platform, $Arch, [switch]$Test = $false) {
1560+
$DispatchBinaryCache = Get-TargetProjectBinaryCache $Arch Dispatch
1561+
$FoundationBinaryCache = Get-TargetProjectBinaryCache $Arch Foundation
15601562
$SwiftTestingBinaryCache = Get-TargetProjectBinaryCache $Arch SwiftTesting
15611563

15621564
Isolate-EnvVars {
@@ -1579,6 +1581,8 @@ function Build-SwiftTesting([Platform]$Platform, $Arch, [switch]$Test = $false)
15791581
-Defines (@{
15801582
BUILD_SHARED_LIBS = "YES";
15811583
CMAKE_BUILD_WITH_INSTALL_RPATH = "YES";
1584+
dispatch_DIR = "$DispatchBinaryCache\cmake\modules";
1585+
Foundation_DIR = "$FoundationBinaryCache\cmake\modules";
15821586
SwiftSyntax_DIR = (Get-HostProjectCMakeModules Compilers);
15831587
# FIXME: Build the plugin for the builder and specify the path.
15841588
SwiftTesting_MACRO = "NO";

0 commit comments

Comments
 (0)