-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project.swift
25 lines (21 loc) · 977 Bytes
/
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
import ProjectDescription
import ProjectDescriptionHelpers
/*
+-------------+
| |
| App | Contains ExampleProject App target and ExampleProject 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: "ExampleProject",
platform: .iOS,
additionalTargets: ["ExampleProjectKit", "ExampleProjectUI"])