-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathPackage.swift
56 lines (52 loc) · 1.55 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "LanguageClient",
platforms: [
.macOS(.v11),
.macCatalyst(.v13),
.iOS(.v14),
.tvOS(.v14),
.watchOS(.v7)
],
products: [
.library(
name: "LanguageClient",
targets: ["LanguageClient"]),
],
dependencies: [
.package(url: "https://github.com/ChimeHQ/LanguageServerProtocol", from: "0.13.2"),
.package(url: "https://github.com/Frizlab/FSEventsWrapper", from: "2.1.0"),
.package(url: "https://github.com/davbeck/swift-glob", from: "0.0.0"),
.package(url: "https://github.com/ChimeHQ/JSONRPC", from: "0.9.0"),
.package(url: "https://github.com/ChimeHQ/ProcessEnv", from: "1.0.0"),
.package(url: "https://github.com/groue/Semaphore", from: "0.0.8"),
.package(url: "https://github.com/mattmassicotte/Queue", from: "0.1.4"),
],
targets: [
.target(
name: "LanguageClient",
dependencies: [
.product(name: "FSEventsWrapper", package: "FSEventsWrapper", condition: .when(platforms: [.macOS])),
.product(name: "Glob", package: "swift-glob"),
"JSONRPC",
"LanguageServerProtocol",
.product(name: "ProcessEnv", package: "ProcessEnv", condition: .when(platforms: [.macOS])),
"Queue",
"Semaphore",
]
),
.testTarget(
name: "LanguageClientTests",
dependencies: ["LanguageClient"]
)
]
)
let swiftSettings: [SwiftSetting] = [
.enableExperimentalFeature("StrictConcurrency")
]
for target in package.targets {
var settings = target.swiftSettings ?? []
settings.append(contentsOf: swiftSettings)
target.swiftSettings = settings
}