mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
19 lines
409 B
CMake
19 lines
409 B
CMake
add_library(InProcessClient STATIC
|
|
InProcessSourceKitLSPClient.swift)
|
|
|
|
set_target_properties(InProcessClient PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
|
|
|
|
target_link_libraries(InProcessClient PUBLIC
|
|
BuildSystemIntegration
|
|
LanguageServerProtocol
|
|
SKLogging
|
|
SKOptions
|
|
SourceKitLSP
|
|
ToolchainRegistry
|
|
)
|
|
|
|
target_link_libraries(InProcessClient PRIVATE
|
|
TSCExtensions
|
|
)
|