mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
32 lines
686 B
CMake
32 lines
686 B
CMake
|
|
add_swift_host_library(swiftFrontendTool STATIC
|
|
FrontendTool.cpp
|
|
ImportedModules.cpp
|
|
LoadedModuleTrace.cpp
|
|
MakeStyleDependencies.cpp
|
|
TBD.cpp)
|
|
add_dependencies(swiftFrontendTool
|
|
SwiftOptions)
|
|
target_link_libraries(swiftFrontendTool INTERFACE
|
|
clangAPINotes
|
|
clangBasic)
|
|
target_link_libraries(swiftFrontendTool PRIVATE
|
|
swiftClangImporter
|
|
swiftConstExtract
|
|
swiftDemangling
|
|
swiftDependencyScan
|
|
swiftFrontend
|
|
swiftImmediate
|
|
swiftIndex
|
|
swiftIRGen
|
|
swiftMigrator
|
|
swiftOption
|
|
swiftPrintAsClang
|
|
swiftSerialization
|
|
swiftSIL
|
|
swiftSILGen
|
|
swiftSILOptimizer
|
|
swiftThreading)
|
|
|
|
set_swift_llvm_is_available(swiftFrontendTool)
|