-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project.swift
31 lines (30 loc) · 959 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
30
31
import ProjectDescription
let project = Project(
name: "OvoTimer",
targets: [
.target(
name: "OvoTimer",
destinations: Set([.iPad, .iPad, .appleVisionWithiPadDesign, .macWithiPadDesign]),
product: .app,
bundleId: "com.departamento-b.OvoTimer",
infoPlist: .extendingDefault(
with: [
"UILaunchStoryboardName": "LaunchScreen.storyboard",
]
),
sources: ["OvoTimer/Sources/**"],
resources: ["OvoTimer/Resources/**"],
dependencies: []
),
.target(
name: "OvoTimerTests",
destinations: .iOS,
product: .unitTests,
bundleId: "io.tuist.OvoTimerTests",
infoPlist: .default,
sources: ["OvoTimer/Tests/**"],
resources: [],
dependencies: [.target(name: "OvoTimer")]
),
]
)