mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
IDE/Refactoring had dependencies to libswiftIndex, but libswiftIndex also depends on libswiftIDE (SourceEntityWalker, etc.) To break libswiftIndex <-> libswiftIDE dependency cycle, move "refactoring" related files to a new library 'libswiftRefactoring' rdar://101692282
14 lines
244 B
CMake
14 lines
244 B
CMake
add_swift_host_library(swiftRefactoring STATIC
|
|
Refactoring.cpp)
|
|
|
|
target_link_libraries(swiftRefactoring PRIVATE
|
|
swiftAST
|
|
swiftClangImporter
|
|
swiftIDE
|
|
swiftIndex
|
|
swiftParse
|
|
swiftSema)
|
|
|
|
set_swift_llvm_is_available(swiftRefactoring)
|
|
|