mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This is a follow up to the discussion on #22740 to switch the host libraries to use the `target_link_libraries` rather than the `LINK_LIBRARIES` special handling. This allows the dependency to be properly tracked by CMake and allows us to use the more modern syntax.
8 lines
148 B
CMake
8 lines
148 B
CMake
add_swift_host_library(swiftParseSIL STATIC
|
|
ParseSIL.cpp)
|
|
target_link_libraries(swiftParseSIL PRIVATE
|
|
swiftSema
|
|
swiftSIL
|
|
swiftSyntaxParse)
|
|
|