mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This is not a target dependency but a target link. Name the parameter to be less misleading. This also makes the name identical to the LLVM parameter.
14 lines
371 B
CMake
14 lines
371 B
CMake
add_swift_host_tool(swift-syntax-test
|
|
swift-syntax-test.cpp
|
|
LLVM_LINK_COMPONENTS
|
|
Support
|
|
SWIFT_COMPONENT tools
|
|
)
|
|
target_link_libraries(swift-syntax-test
|
|
PRIVATE
|
|
swiftAST
|
|
swiftDriver
|
|
swiftFrontend
|
|
swiftSema
|
|
swiftSyntax)
|