File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ add_subdirectory(_SwiftSyntaxCShims)
1111add_subdirectory (SwiftBasicFormat)
1212add_subdirectory (SwiftSyntax)
1313add_subdirectory (SwiftDiagnostics)
14+ add_subdirectory (SwiftLexicalLookup)
1415add_subdirectory (SwiftLibraryPluginProvider)
1516add_subdirectory (SwiftParser)
1617add_subdirectory (SwiftParserDiagnostics)
Original file line number Diff line number Diff line change 1+ # This source file is part of the Swift.org open source project
2+ #
3+ # Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors
4+ # Licensed under Apache License v2.0 with Runtime Library Exception
5+ #
6+ # See http://swift.org/LICENSE.txt for license information
7+ # See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8+
9+ add_swift_syntax_library(SwiftLexicalLookup
10+ IdentifiableSyntax.swift
11+ LookupName.swift
12+ LookupResult.swift
13+ SimpleLookupQueries.swift
14+
15+ Configurations /FileScopeHandlingConfig.swift
16+ Configurations /LookupConfig.swift
17+
18+ Scopes/GenericParameterScopeSyntax.swift
19+ Scopes/IntroducingToSequentialParentScopeSyntax.swift
20+ Scopes/ScopeImplementations.swift
21+ Scopes/ScopeSyntax.swift
22+ Scopes/SequentialScopeSyntax.swift
23+ Scopes/TypeScopeSyntax.swift
24+ Scopes/WithGenericParametersScopeSyntax.swift
25+ )
26+
27+ target_link_swift_syntax_libraries(SwiftLexicalLookup PUBLIC
28+ SwiftSyntax)
29+
You can’t perform that action at this time.
0 commit comments