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