-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.swift
29 lines (24 loc) · 1005 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
26
27
28
29
import ProjectDescription
import ProjectDescriptionHelpers
import MyPlugin
/*
+-------------+
| |
| App | Contains FiniesNew App target and FiniesNew unit-test target
| |
+------+-------------+-------+
| depends on |
| |
+----v-----+ +-----v-----+
| | | |
| Kit | | UI | Two independent frameworks to share code and start modularising your app
| | | |
+----------+ +-----------+
*/
// MARK: - Project
// Local plugin loaded
let localHelper = LocalHelper(name: "MyPlugin")
// Creates our project using a helper function defined in ProjectDescriptionHelpers
let project = Project.app(name: "D3N",
platform: .iOS,
additionalTargets: [])