mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
28 lines
614 B
CMake
28 lines
614 B
CMake
add_swift_host_library(swiftFrontendTool STATIC
|
|
FrontendTool.cpp
|
|
ImportedModules.cpp
|
|
ReferenceDependencies.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
|
|
swiftDWARFImporter
|
|
swiftFrontend
|
|
swiftIDE
|
|
swiftImmediate
|
|
swiftIndex
|
|
swiftIRGen
|
|
swiftOption
|
|
swiftPrintAsObjC
|
|
swiftSerialization
|
|
swiftSIL
|
|
swiftSILGen
|
|
swiftSILOptimizer
|
|
swiftTBDGen)
|