mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
AST still circularly depends on Parse (and Sema), but Parse no longer depends on SIL. That's up in ParseSIL now.
17 lines
301 B
CMake
17 lines
301 B
CMake
add_swift_unittest(SwiftASTTests
|
|
ArithmeticEvaluator.cpp
|
|
DiagnosticConsumerTests.cpp
|
|
SourceLocTests.cpp
|
|
TestContext.cpp
|
|
TypeMatchTests.cpp
|
|
VersionRangeLattice.cpp
|
|
)
|
|
|
|
target_link_libraries(SwiftASTTests
|
|
PRIVATE
|
|
swiftAST
|
|
# FIXME: Circular dependencies.
|
|
swiftParse
|
|
swiftSema
|
|
)
|