mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
19 lines
435 B
CMake
19 lines
435 B
CMake
set(SourceKitSupport_sources
|
|
Concurrency-libdispatch.cpp
|
|
FuzzyStringMatcher.cpp
|
|
Logging.cpp
|
|
ImmutableTextBuffer.cpp
|
|
ThreadSafeRefCntPtr.cpp
|
|
Tracing.cpp
|
|
UIDRegistry.cpp
|
|
)
|
|
|
|
add_sourcekit_library(SourceKitSupport
|
|
${SourceKitSupport_sources}
|
|
LINK_LIBS swiftBasic swiftSyntax clangBasic clangRewrite
|
|
)
|
|
if(SWIFT_NEED_EXPLICIT_LIBDISPATCH)
|
|
target_link_libraries(SourceKitSupport INTERFACE dispatch BlocksRuntime)
|
|
endif()
|
|
|