-
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.01 KB
/
Workspace.swift
File metadata and controls
34 lines (32 loc) · 1.01 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
//
// Workspace.swift
// Config
//
// Created by 조용인 on 3/8/25.
//
import ProjectDescription
let workspace = Workspace(
name: "PIDA",
projects: [
"./Projects/**"
],
schemes: [
.scheme(
name: "Debug-PIDA",
buildAction: .buildAction(targets: [.project(path: "./Projects/PIDA", target: "PIDA_DEV")]),
runAction: .runAction(configuration: .debug),
archiveAction: .archiveAction(configuration: .debug),
profileAction: .profileAction(configuration: .debug),
analyzeAction: .analyzeAction(configuration: .debug)
),
.scheme(
name: "PROD-PIDA",
buildAction: .buildAction(targets: [.project(path: "./Projects/PIDA", target: "pida")]),
runAction: .runAction(configuration: .release),
archiveAction: .archiveAction(configuration: .release),
profileAction: .profileAction(configuration: .release),
analyzeAction: .analyzeAction(configuration: .release)
)
],
generationOptions: .options(autogeneratedWorkspaceSchemes: .disabled)
)