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