mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
21 lines
731 B
CMake
21 lines
731 B
CMake
|
|
add_library(LanguageServerProtocolExtensions STATIC
|
|
Connection+Send.swift
|
|
DocumentURI+symlinkTarget.swift
|
|
Language+Inference.swift
|
|
ResponseError+Init.swift
|
|
WorkDoneProgressManager.swift
|
|
)
|
|
set_target_properties(LanguageServerProtocolExtensions PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
|
|
target_link_libraries(LanguageServerProtocolExtensions PUBLIC
|
|
SourceKitD)
|
|
target_link_libraries(LanguageServerProtocolExtensions PRIVATE
|
|
SwiftToolsProtocols::LanguageServerProtocol
|
|
SwiftToolsProtocols::LanguageServerProtocolTransport
|
|
SwiftToolsProtocols::SKLogging
|
|
SwiftExtensions
|
|
SwiftToolsProtocols::ToolsProtocolsSwiftExtensions
|
|
TSCBasic
|
|
$<$<NOT:$<PLATFORM_ID:Darwin>>:Foundation>)
|