-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package@swift-5.8.swift
48 lines (45 loc) · 1.34 KB
/
Package@swift-5.8.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
// swift-tools-version: 5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "SyntaxSparrow",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6),
.macCatalyst(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "SyntaxSparrow",
targets: ["SyntaxSparrow"]
),
],
dependencies: [
.package(url: "https://github.com/swiftlang/swift-syntax.git", from: "600.0.1"),
],
targets: [
.target(
name: "SyntaxSparrow",
dependencies: [
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftParser", package: "swift-syntax"),
],
resources: [
.copy("Resources/PrivacyInfo.xcprivacy")
]
),
.testTarget(
name: "SyntaxSparrowTests",
dependencies: [
"SyntaxSparrow",
]
),
]
)
// Supplementary
package.dependencies.append(contentsOf: [
.package(url: "https://github.com/SwiftPackageIndex/SPIManifest.git", from: "0.12.0"),
])