Skip to content

Commit c05403a

Browse files
committed
Add CMakeLists to SwiftLexicalLookup.
1 parent 4cac8a8 commit c05403a

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

Sources/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ add_subdirectory(_SwiftSyntaxCShims)
1111
add_subdirectory(SwiftBasicFormat)
1212
add_subdirectory(SwiftSyntax)
1313
add_subdirectory(SwiftDiagnostics)
14+
add_subdirectory(SwiftLexicalLookup)
1415
add_subdirectory(SwiftLibraryPluginProvider)
1516
add_subdirectory(SwiftParser)
1617
add_subdirectory(SwiftParserDiagnostics)
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+

0 commit comments

Comments
 (0)