Files
swift-mirror/lib/DWARFImporter/CMakeLists.txt
Saleem Abdulrasool 0da756e1df build: use target_link_libraries for DWARImporter
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.
2018-12-08 11:09:09 -08:00

7 lines
149 B
CMake

add_swift_host_library(swiftDWARFImporter STATIC
DWARFImporter.cpp)
target_link_libraries(swiftDWARFImporter PRIVATE
swiftAST
swiftParse
)