mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
18 lines
327 B
CMake
18 lines
327 B
CMake
add_swift_unittest(SwiftParseTests
|
|
BuildConfigTests.cpp
|
|
LexerTests.cpp
|
|
LexerTriviaTests.cpp
|
|
TokenizerTests.cpp
|
|
)
|
|
|
|
target_link_libraries(SwiftParseTests
|
|
PRIVATE
|
|
swiftSIL
|
|
swiftClangImporter
|
|
swiftParse
|
|
swiftAST
|
|
# FIXME: Sema must go last because of circular dependencies with AST.
|
|
swiftSema
|
|
)
|
|
|