forked from swiftlang/sourcekit-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
33 lines (32 loc) · 1019 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
33 lines (32 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
add_library(SwiftSyntaxCodeActions STATIC
AddDocumentation.swift
AddExplicitEnumRawValues.swift
ApplyDeMorganLaw.swift
ConvertCommentToDocComment.swift
ConvertIfLetToGuard.swift
ConvertIntegerLiteral.swift
ConvertJSONToCodableStruct.swift
ConvertStringConcatenationToStringInterpolation.swift
IndentationRemover.swift
PackageManifestEdits.swift
SwapBinaryOperands.swift
SyntaxCodeActionProvider.swift
SyntaxCodeActions.swift
SyntaxRefactoringCodeActionProvider.swift
)
set_target_properties(SwiftSyntaxCodeActions PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
target_link_libraries(SwiftSyntaxCodeActions PUBLIC
SourceKitLSP
SwiftToolsProtocols::LanguageServerProtocol
SwiftSyntax::SwiftSyntax
)
target_link_libraries(SwiftSyntaxCodeActions PRIVATE
SwiftToolsProtocols::SKLogging
SwiftExtensions
SwiftSyntax::SwiftBasicFormat
SwiftSyntax::SwiftOperators
SwiftSyntax::SwiftParser
SwiftSyntax::SwiftRefactor
SwiftSyntax::SwiftSyntaxBuilder
)