From f0ea3394393da5a8b10263c29d3e3699c19d69db Mon Sep 17 00:00:00 2001 From: Owen Voorhees Date: Wed, 9 Apr 2025 16:57:23 -0700 Subject: [PATCH] Define SwiftBuild_Dir when building SwiftPM in build.ps1 --- utils/build.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/build.ps1 b/utils/build.ps1 index b00904c74f02c..b479455008f14 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -2817,6 +2817,7 @@ function Build-PackageManager([Hashtable] $Platform) { LLBuild_DIR = (Get-ProjectCMakeModules $Platform LLBuild); ArgumentParser_DIR = (Get-ProjectCMakeModules $Platform ArgumentParser); SwiftDriver_DIR = (Get-ProjectCMakeModules $Platform Driver); + SwiftBuild_DIR = (Get-ProjectCMakeModules $Platform Build); SwiftCrypto_DIR = (Get-ProjectCMakeModules $Platform Crypto); SwiftCollections_DIR = (Get-ProjectCMakeModules $Platform Collections); SwiftASN1_DIR = (Get-ProjectCMakeModules $Platform ASN1); @@ -2941,6 +2942,7 @@ function Build-SourceKitLSP([Hashtable] $Platform) { ArgumentParser_DIR = (Get-ProjectCMakeModules $Platform ArgumentParser); SwiftCrypto_DIR = (Get-ProjectCMakeModules $Platform Crypto); SwiftCollections_DIR = (Get-ProjectCMakeModules $Platform Collections); + SwiftBuild_DIR = (Get-ProjectCMakeModules $Platform Build); SwiftPM_DIR = (Get-ProjectCMakeModules $Platform PackageManager); LMDB_DIR = (Get-ProjectCMakeModules $Platform LMDB); IndexStoreDB_DIR = (Get-ProjectCMakeModules $Platform IndexStoreDB);