-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
59 lines (58 loc) · 1.51 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
57
58
59
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "EnventConsumerSimulation",
platforms: [.iOS(.v17)],
products: [
.library(
name: "EventsCommons",
type: .static,
targets: ["EventsCommons"]
),
.library(
name: "EventsDomain",
type: .static,
targets: ["EventsDomain"]
),
.library(
name: "EventsServices",
type: .static,
targets: ["EventsServices"]
),
.library(
name: "EventsUI",
type: .static,
targets: ["EventsUI"]
),
],
targets: [
.target(
name: "EventsCommons",
path: "Sources/EventsCommons"
),
.target(
name: "EventsDomain",
dependencies: [
.target(name: "EventsCommons")
],
path: "Sources/EventsDomain"
),
.target(
name: "EventsServices",
dependencies: [
.target(name: "EventsCommons"),
.target(name: "EventsDomain"),
],
path: "Sources/EventsServices"
),
.target(
name: "EventsUI",
dependencies: [
.target(name: "EventsCommons"),
.target(name: "EventsDomain"),
],
path: "Sources/EventsUI"
),
],
swiftLanguageVersions: [.v5]
) // Only one closing parenthesis here