mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
(libraries now) It has been generally agreed that we need to do this reorg, and now seems like the perfect time. Some major pass reorganization is in the works. This does not have to be the final word on the matter. The consensus among those working on the code is that it's much better than what we had and a better starting point for future bike shedding. Note that the previous organization was designed to allow separate analysis and optimization libraries. It turns out this is an artificial distinction and not an important goal.
46 lines
1.0 KiB
CMake
46 lines
1.0 KiB
CMake
add_sourcekit_library(SourceKitSwiftLang
|
|
CodeCompletionOrganizer.cpp
|
|
SwiftASTManager.cpp
|
|
SwiftCompletion.cpp
|
|
SwiftDocSupport.cpp
|
|
SwiftEditor.cpp
|
|
SwiftEditorInterfaceGen.cpp
|
|
SwiftIndexing.cpp
|
|
SwiftLangSupport.cpp
|
|
SwiftSourceDocInfo.cpp
|
|
DEPENDS SourceKitCore swiftDriver swiftFrontend swiftClangImporter swiftIDE
|
|
swiftAST swiftMarkup swiftParse swiftSIL swiftSILGen swiftSILOptimizer
|
|
swiftSema swiftBasic swiftSerialization
|
|
swiftOption cmark
|
|
# Clang dependencies.
|
|
clangFormat
|
|
clangToolingCore
|
|
clangIndex
|
|
clangDriver
|
|
clangFrontendTool
|
|
clangFrontend
|
|
clangCodeGen
|
|
clangSerialization
|
|
clangParse
|
|
clangSema
|
|
clangAnalysis
|
|
clangEdit
|
|
clangRewrite
|
|
clangRewriteFrontend
|
|
clangLex
|
|
clangAST
|
|
clangAPINotes
|
|
clangBasic
|
|
COMPONENT_DEPENDS ${LLVM_TARGETS_TO_BUILD}
|
|
bitreader
|
|
bitwriter
|
|
debuginfodwarf
|
|
instrumentation
|
|
ipo
|
|
mc
|
|
mcparser
|
|
option
|
|
objcarcopts
|
|
profiledata
|
|
)
|