mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
19 lines
405 B
CMake
19 lines
405 B
CMake
add_sourcekit_library(SourceKitSupport
|
|
Concurrency-libdispatch.cpp
|
|
Logging.cpp
|
|
ImmutableTextBuffer.cpp
|
|
ThreadSafeRefCntPtr.cpp
|
|
Tracing.cpp
|
|
UIDRegistry.cpp)
|
|
target_link_libraries(SourceKitSupport PRIVATE
|
|
swiftBasic
|
|
swiftSyntax
|
|
clangBasic
|
|
clangRewrite)
|
|
if(NOT CMAKE_SYSTEM_NAME STREQUAL Darwin)
|
|
target_link_libraries(SourceKitSupport INTERFACE
|
|
dispatch
|
|
BlocksRuntime)
|
|
endif()
|
|
|