Files
swift-mirror/tools/swift-refactor/CMakeLists.txt
Saleem Abdulrasool dd85d79105 tools: use target_link_libraries like clang (NFC)
Rather than using the `LINK_LIBRARIES` option, use target_link_libraries
like clang does.  Because these are all host tools, there is no name
mangling done for the libraries making this a no-op change.
2018-11-16 17:43:06 -08:00

10 lines
257 B
CMake

add_swift_host_tool(swift-refactor
swift-refactor.cpp
SWIFT_COMPONENT tools
)
target_link_libraries(swift-refactor
PRIVATE
swiftDriver
swiftFrontend
swiftIDE)