-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
47 lines (45 loc) · 1.26 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
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swift-doc-coverage",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
//.visionOS(.v1)
.watchOS(.v6)
],
products: [
.library(name: "SwiftSource", targets: ["SwiftSource"]),
.executable(name: "swift-doc-coverage", targets: ["swift-doc-coverage"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-syntax.git", from: "509.1.1"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.3.0")
],
targets: [
.target(
name: "SwiftSource",
dependencies: [
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftParser", package: "swift-syntax"),
]
),
.executableTarget(
name: "swift-doc-coverage",
dependencies: [
.target(name: "SwiftSource"),
.product(name: "ArgumentParser", package: "swift-argument-parser")
]
),
.testTarget(
name: "SwiftDocCoverageTests",
dependencies: ["swift-doc-coverage"],
resources: [
.copy("Resources")
]
)
],
swiftLanguageVersions: [.v5]
)