mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
26 lines
627 B
CMake
26 lines
627 B
CMake
add_swift_host_library(swiftFrontend STATIC
|
|
ArgsToFrontendInputsConverter.cpp
|
|
ArgsToFrontendOptionsConverter.cpp
|
|
ArgsToFrontendOutputsConverter.cpp
|
|
CompilerInvocation.cpp
|
|
DiagnosticVerifier.cpp
|
|
Frontend.cpp
|
|
FrontendInputsAndOutputs.cpp
|
|
FrontendOptions.cpp
|
|
ParseableInterfaceModuleLoader.cpp
|
|
ParseableInterfaceSupport.cpp
|
|
PrintingDiagnosticConsumer.cpp
|
|
SerializedDiagnosticConsumer.cpp)
|
|
add_dependencies(swiftFrontend
|
|
SwiftOptions)
|
|
target_link_libraries(swiftFrontend PRIVATE
|
|
swiftSIL
|
|
swiftMigrator
|
|
swiftOption
|
|
swiftParseSIL
|
|
swiftSILGen
|
|
swiftSILOptimizer
|
|
swiftSema
|
|
swiftSerialization)
|
|
|