-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.swift
36 lines (35 loc) · 1.14 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
31
32
33
34
35
36
import ProjectDescription
let project = Project(
name: "FindaCafe",
targets: [
.target(
name: "FindaCafe",
destinations: .iOS,
product: .app,
bundleId: "io.juistios.FindaCafe",
deploymentTargets: .iOS("15.0"),
infoPlist: .extendingDefault(
with: [
"UILaunchStoryboardName": "LaunchScreen.storyboard",
]
),
sources: ["FindaCafe/Sources/**"],
resources: ["FindaCafe/Resources/**"],
dependencies: [
.project(target: "HomeFeature", path: "Features/HomeFeature"),
.project(target: "SearchFeature", path: "Features/SearchFeature")
]
),
.target(
name: "FindaCafeTests",
destinations: .iOS,
product: .unitTests,
bundleId: "io.juistios.FindaCafeTests",
deploymentTargets: .iOS("15.0"),
infoPlist: .default,
sources: ["FindaCafe/Tests/**"],
resources: [],
dependencies: [.target(name: "FindaCafe")]
),
]
)