From 55fa49821ac4399f5f7f9a9bce5f05255c36801e Mon Sep 17 00:00:00 2001 From: Egor Zhdan Date: Thu, 28 Nov 2024 12:21:30 +0000 Subject: [PATCH] [build] Add missing source file to CMake `SubstringSearcher.swift` wasn't in the list of source files for CMake target _StringProcessing, which caused a compilation error for me locally while building the Swift compiler. --- Sources/_StringProcessing/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/_StringProcessing/CMakeLists.txt b/Sources/_StringProcessing/CMakeLists.txt index 0ebe2aed..8d789b6d 100644 --- a/Sources/_StringProcessing/CMakeLists.txt +++ b/Sources/_StringProcessing/CMakeLists.txt @@ -6,6 +6,7 @@ add_library(_StringProcessing Algorithms/Algorithms/Replace.swift Algorithms/Algorithms/Split.swift Algorithms/Algorithms/StartsWith.swift + Algorithms/Algorithms/SubstringSearcher.swift Algorithms/Algorithms/Trim.swift Algorithms/Consumers/CollectionConsumer.swift Algorithms/Consumers/FixedPatternConsumer.swift