forked from AdultOfNineteen/WINEY-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorkspace.swift
33 lines (32 loc) · 1.02 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
import ProjectDescription
import ProjectDescriptionHelpers
import Foundation
let workspace = Workspace(
name: "Winey",
projects: [
"Projects/**"
]
// ,
// schemes: [
// Scheme(
// name: "Prod-Winey",
// buildAction: .buildAction(targets: [.project(path: "Projects/App", target: "Winey")]),
// runAction: .runAction(configuration: .release),
// archiveAction: .archiveAction(configuration: .release),
// profileAction: .profileAction(configuration: .release),
// analyzeAction: .analyzeAction(configuration: .release)
// ),
// Scheme(
// name: "Dev-Winey",
// buildAction: .buildAction(targets: [.project(path: "Projects/App", target: "Winey")]),
// runAction: .runAction(configuration: .debug),
// archiveAction: .archiveAction(configuration: .debug),
// profileAction: .profileAction(configuration: .debug),
// analyzeAction: .analyzeAction(configuration: .debug)
// )
// ]
// ,
// additionalFiles: [
// "./xcconfigs/Winey.shared.xcconfig"
// ]
)