Files
swift-mirror/lib/Frontend/CMakeLists.txt
zoecarver 6f339f800d [SIL] [Parser] Move ParserSIL into SIL library.
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.
2020-04-13 17:23:08 -07:00

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)