Files
swift-mirror/lib/Frontend/CMakeLists.txt
Jordan Rose 1d3bdfae7f Separate dependency tracking from Make-style .d file generation.
This refactoring is groundwork for saving the cross-module dependencies
in the swiftdeps files as well, so that we know to rebuild files if an
outside file changes (such as a bridging header, another framework's
headers, or another framework's swiftmodule).

Part of rdar://problem/19270920

Swift SVN r24258
2015-01-08 03:02:17 +00:00

16 lines
310 B
CMake

add_swift_library(swiftFrontend
CompilerInvocation.cpp
DiagnosticVerifier.cpp
Frontend.cpp
FrontendOptions.cpp
PrintingDiagnosticConsumer.cpp
SerializedDiagnosticConsumer.cpp
DEPENDS SwiftOptions
LINK_LIBRARIES
swiftSIL
swiftOption
swiftParse
swiftSema
swiftSerialization)