forked from ameriod/ForestKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.swift
37 lines (33 loc) · 1.13 KB
/
Project.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
import ProjectDescription
import ProjectDescriptionHelpers
/*
+-------------+
| |
| App | Contains Forest App target and Forest unit-test target
| |
+------+-------------+-------+
| depends on |
| |
+----v-----+ +-----v-----+
| | | |
| Kit | | UI | Two independent frameworks to share code and start modularising your app
| | | |
+----------+ +-----------+
*/
// MARK: - Project
// Creates our project using a helper function defined in ProjectDescriptionHelpers
let project = Project.app(
name: "Forest",
platform: .iOS,
additionalTargets: [
Project.AdditonalTarget(name: "ForestKit"),
Project.AdditonalTarget(name: "ForestKitView", dependencies: ["ForestKit"])
],
additionalFiles: [
"README.md",
"LICENSE",
"Package.swift",
".swiftlint.yml",
".swiftformat"
]
)