-
Notifications
You must be signed in to change notification settings - Fork 37
/
Package.swift
31 lines (25 loc) · 927 Bytes
/
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
// swift-tools-version:4.2
import PackageDescription
var package = Package(
name: "SourceKittenDaemon",
dependencies: [
.package(url: "https://github.com/Carthage/Commandant.git", .branch("master")),
.package(url: "https://github.com/jpsim/SourceKitten.git", .branch("master")),
.package(url: "https://github.com/envoy/Embassy.git", .branch("master")),
.package(url: "https://github.com/tomlokhorst/XcodeEdit", .branch("develop")),
.package(url: "https://github.com/antitypical/Result.git", .branch("master"))
],
targets: [
.target(
name: "SourceKittenDaemon",
dependencies: ["Commandant", "SourceKittenFramework", "XcodeEdit", "Embassy", "Result" ]
),
.target(
name: "sourcekittend",
dependencies: ["SourceKittenDaemon"])
]
)
#if os(Linux)
package.dependencies.append(.Package(url: "https://github.com/felix91gr/FileSystemWatcher.git",
majorVersion: 1))
#endif