-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
40 lines (38 loc) · 1.03 KB
/
Project.swift
File metadata and controls
40 lines (38 loc) · 1.03 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
38
39
40
//
// (c) 2025 Roberto Corrales, All rights reserved.
//
//
//
import ProjectDescription
let project = Project(
name: "ios-makefile",
targets: [
.target(
name: "ios-makefile",
destinations: .iOS,
product: .app,
bundleId: "io.tuist.ios-makefile",
infoPlist: .extendingDefault(
with: [
"UILaunchScreen": [
"UIColorName": "",
"UIImageName": ""
]
]
),
sources: ["ios-makefile/Sources/**"],
resources: ["ios-makefile/Resources/**"],
dependencies: []
),
.target(
name: "ios-makefileTests",
destinations: .iOS,
product: .unitTests,
bundleId: "io.tuist.ios-makefileTests",
infoPlist: .default,
sources: ["ios-makefile/Tests/**"],
resources: [],
dependencies: [.target(name: "ios-makefile")]
)
]
)