-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkspace.swift
More file actions
34 lines (32 loc) · 1.15 KB
/
Workspace.swift
File metadata and controls
34 lines (32 loc) · 1.15 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
import ProjectDescription
let workspace = Workspace(
name: "Julook",
projects: [
"Projects/App"
],
schemes: [
.scheme(
name: "Julook",
buildAction: .buildAction(targets: [.project(path: "./Projects/App", target: "Julook")]),
runAction: .runAction(
configuration: .debug,
arguments: .arguments(environmentVariables: ["IDEPreferLogStreaming": "YES"])
),
archiveAction: .archiveAction(configuration: .release),
profileAction: .profileAction(configuration: .release),
analyzeAction: .analyzeAction(configuration: .release)
)
],
generationOptions: .options(autogeneratedWorkspaceSchemes: .disabled)
)
// .scheme(
// name: "Dev-Julook",
// buildAction: .buildAction(targets: [.project(path: "./Projects/App", target: "Dev-Julook")]),
// runAction: .runAction(
// configuration: .debug,
// arguments: .arguments(environmentVariables: ["IDEPreferLogStreaming": "YES"])
// ),
// archiveAction: .archiveAction(configuration: .debug),
// profileAction: .profileAction(configuration: .debug),
// analyzeAction: .analyzeAction(configuration: .debug)
// )