mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This library now relires on a static compiler library called `swiftDependencyScan`, which is also common to being used by `swift-frontend` for its dependency scanner invocations.
30 lines
669 B
CMake
30 lines
669 B
CMake
set_swift_llvm_is_available()
|
|
add_swift_host_library(swiftFrontendTool STATIC
|
|
FrontendTool.cpp
|
|
ImportedModules.cpp
|
|
LoadedModuleTrace.cpp
|
|
MakeStyleDependencies.cpp
|
|
TBD.cpp)
|
|
add_dependencies(swiftFrontendTool
|
|
swift-syntax-generated-headers
|
|
SwiftOptions)
|
|
target_link_libraries(swiftFrontendTool INTERFACE
|
|
clangAPINotes
|
|
clangBasic)
|
|
target_link_libraries(swiftFrontendTool PRIVATE
|
|
swiftClangImporter
|
|
swiftDemangling
|
|
swiftDependencyScan
|
|
swiftFrontend
|
|
swiftIDE
|
|
swiftImmediate
|
|
swiftIndex
|
|
swiftIRGen
|
|
swiftOption
|
|
swiftPrintAsObjC
|
|
swiftSerialization
|
|
swiftSIL
|
|
swiftSILGen
|
|
swiftSILOptimizer
|
|
swiftTBDGen)
|