mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Move the source files from ParserSIL into the SIL library and remove the ParserSIL library. ParsersSIL doesn't need to be its own library and this change will simplify our builds.
30 lines
691 B
CMake
30 lines
691 B
CMake
add_swift_host_library(swiftFrontend STATIC
|
|
ArgsToFrontendInputsConverter.cpp
|
|
ArgsToFrontendOptionsConverter.cpp
|
|
ArgsToFrontendOutputsConverter.cpp
|
|
CompilerInvocation.cpp
|
|
DependencyVerifier.cpp
|
|
DiagnosticVerifier.cpp
|
|
Frontend.cpp
|
|
FrontendInputsAndOutputs.cpp
|
|
FrontendOptions.cpp
|
|
ModuleInterfaceBuilder.cpp
|
|
ModuleInterfaceLoader.cpp
|
|
ModuleInterfaceSupport.cpp
|
|
PrintingDiagnosticConsumer.cpp
|
|
SerializedDiagnosticConsumer.cpp)
|
|
add_dependencies(swiftFrontend
|
|
SwiftOptions)
|
|
target_link_libraries(swiftFrontend PRIVATE
|
|
swiftAST
|
|
swiftSIL
|
|
swiftMigrator
|
|
swiftOption
|
|
swiftSILGen
|
|
swiftSILOptimizer
|
|
swiftIRGen
|
|
swiftSema
|
|
swiftSerialization
|
|
swiftTBDGen)
|
|
|