mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Use `target_link_libraries` for the linked libraries like the other host libraries. This is setup for migrating the host libraries and executables to the LLVM build infrastructure and matches what the rest of the host tools and libraries do.
7 lines
149 B
CMake
7 lines
149 B
CMake
add_swift_host_library(swiftDWARFImporter STATIC
|
|
DWARFImporter.cpp)
|
|
target_link_libraries(swiftDWARFImporter PRIVATE
|
|
swiftAST
|
|
swiftParse
|
|
)
|