mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
29 lines
604 B
CMake
29 lines
604 B
CMake
add_swift_host_library(swiftIDE STATIC
|
|
CodeCompletion.cpp
|
|
CodeCompletionCache.cpp
|
|
CodeCompletionResultPrinter.cpp
|
|
CommentConversion.cpp
|
|
CompletionInstance.cpp
|
|
ConformingMethodList.cpp
|
|
ExprContextAnalysis.cpp
|
|
Formatting.cpp
|
|
Refactoring.cpp
|
|
ModuleInterfacePrinting.cpp
|
|
REPLCodeCompletion.cpp
|
|
SwiftSourceDocInfo.cpp
|
|
SyntaxModel.cpp
|
|
Utils.cpp
|
|
IDETypeChecking.cpp
|
|
APIDigesterData.cpp
|
|
SourceEntityWalker.cpp
|
|
TypeContextInfo.cpp
|
|
IDERequests.cpp)
|
|
target_link_libraries(swiftIDE PRIVATE
|
|
swiftAST
|
|
swiftClangImporter
|
|
swiftFrontend
|
|
swiftIndex
|
|
swiftParse
|
|
swiftSema)
|
|
|