-
Notifications
You must be signed in to change notification settings - Fork 1
/
Project.swift
30 lines (25 loc) · 1.17 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
import ProjectDescription
import ProjectDescriptionHelpers
import MyPlugin
/*
+-------------+
| |
| App | Contains Valencia App target and Valencia 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: "Valencia",
platform: .macOS,
additionalTargets: ["ValenciaKit", "ValenciaUI"],
dependencies: [.package(product: "IMCore"), .package(product: "ERWeakLink"), .external(name: "fishhook"), .external(name: "Logging")])