-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPackage.swift
53 lines (52 loc) · 1.38 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
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "DoNilDisturbPlugin",
platforms: [
.macOS(.v11),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v8)
],
products: [
.plugin(name: "DoNilDisturbPlugin", targets: ["DoNilDisturb"])
],
dependencies: [
.package(url: "https://github.com/icanzilb/iCalendar.git", from: "0.0.1")
],
targets: [
// Your app or library
.executableTarget(
name: "MyApp",
plugins: [
.plugin(name: "DoNilDisturb")
]
),
// Your plugin's IMPLEMENTATION
.executableTarget(
name: "PluginBinary",
dependencies: [
.product(name: "iCalendar", package: "iCalendar")
],
path: "PluginBinary"
),
// Your plugin's INTERFACE
.plugin(
name: "DoNilDisturb",
capability: .buildTool(),
dependencies: [
.target(name: "PluginBinary")
]
),
.testTarget(
name: "DoNilDisturbPluginTests",
dependencies: [
.target(name: "PluginBinary"),
.product(name: "iCalendar", package: "iCalendar")
],
resources: [
.copy("Resources"),
]
)
]
)