-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProject.swift
More file actions
37 lines (36 loc) · 1.04 KB
/
Project.swift
File metadata and controls
37 lines (36 loc) · 1.04 KB
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
let project = Project(
name: "#[WRITE_YOUR_PROJECT_NAME]",
targets: [
.target(
name: "#[WRITE_YOUR_PROJECT_NAME]",
destinations: .iOS,
product: .app,
bundleId: "dev.tuist.projectname",
infoPlist: .extendingDefault(
with: [
"UILaunchScreen": [
"UIColorName": "",
"UIImageName": "",
],
]
),
buildableFolders: [
"App/Sources",
"App/Resources",
],
dependencies: []
),
.target(
name: "#[WRITE_YOUR_PROJECT_NAME]Tests",
destinations: .iOS,
product: .unitTests,
bundleId: "dev.tuist.projectnameTests",
infoPlist: .default,
buildableFolders: [
"App/Tests"
],
dependencies: [.target(name: "#[WRITE_YOUR_PROJECT_NAME]")]
),
]
)