-
Notifications
You must be signed in to change notification settings - Fork 0
/
Workspace.swift
37 lines (36 loc) · 1.19 KB
/
Workspace.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
37
import ProjectDescription
let workspace = Workspace(
name: "Dorabangs",
projects: [
"Projects/App",
"Projects/Core",
"Projects/DesignSystem",
"Projects/Features/Coordinator",
"Projects/Features/Scene"
],
schemes: [
.scheme(
name: "Prod-Dorabangs",
buildAction: .buildAction(targets: [.project(path: "./Projects/App", target: "Prod-Dorabangs")]),
runAction: .runAction(
configuration: .release,
arguments: .arguments(environmentVariables: ["IDEPreferLogStreaming": "YES"])
),
archiveAction: .archiveAction(configuration: .release),
profileAction: .profileAction(configuration: .release),
analyzeAction: .analyzeAction(configuration: .release)
),
.scheme(
name: "Dev-Dorabangs",
buildAction: .buildAction(targets: [.project(path: "./Projects/App", target: "Dev-Dorabangs")]),
runAction: .runAction(
configuration: .debug,
arguments: .arguments(environmentVariables: ["IDEPreferLogStreaming": "YES"])
),
archiveAction: .archiveAction(configuration: .debug),
profileAction: .profileAction(configuration: .debug),
analyzeAction: .analyzeAction(configuration: .debug)
)
],
generationOptions: .options(autogeneratedWorkspaceSchemes: .disabled)
)