From ffa15b814d4252acb15898d2c99078cf3af37346 Mon Sep 17 00:00:00 2001 From: Doug Schaefer Date: Wed, 7 May 2025 09:57:06 -0400 Subject: [PATCH] Add SwiftASN1 to sourcekit-lsp dependencies for Windows. Updates the build.ps1 script to add the SwiftASN1 package support to it's CMake build. This was caused by this dependency being added to a module in SwiftPM that sourcekit-lsp imports. --- utils/build.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/build.ps1 b/utils/build.ps1 index 7ed01f65ba7db..8dcadb1bbf1e3 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -2934,6 +2934,7 @@ function Build-SourceKitLSP([Hashtable] $Platform) { TSC_DIR = (Get-ProjectCMakeModules $Platform ToolsSupportCore); LLBuild_DIR = (Get-ProjectCMakeModules $Platform LLBuild); ArgumentParser_DIR = (Get-ProjectCMakeModules $Platform ArgumentParser); + SwiftASN1_DIR = (Get-ProjectCMakeModules $Platform ASN1); SwiftCrypto_DIR = (Get-ProjectCMakeModules $Platform Crypto); SwiftCollections_DIR = (Get-ProjectCMakeModules $Platform Collections); SwiftBuild_DIR = (Get-ProjectCMakeModules $Platform Build);