-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
70 lines (66 loc) · 1.98 KB
/
project.yml
File metadata and controls
70 lines (66 loc) · 1.98 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: AdminRightsManager
options:
bundleIdPrefix: com.adminrights
deploymentTarget:
macOS: "13.0"
xcodeVersion: "15.0"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "13.0"
targets:
# ─── Main App Target ────────────────────────────────────────
AdminRightsManager:
type: application
platform: macOS
sources:
- path: AdminRightsManager
excludes:
- "**/.DS_Store"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.adminrights.manager
PRODUCT_NAME: AdminRightsManager
INFOPLIST_FILE: AdminRightsManager/Info.plist
MARKETING_VERSION: "1.0.0"
CURRENT_PROJECT_VERSION: "1"
COMBINE_HIDPI_IMAGES: YES
CODE_SIGN_STYLE: Automatic
LD_RUNPATH_SEARCH_PATHS:
- "@executable_path/../Frameworks"
configs:
Debug:
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
Release:
SWIFT_OPTIMIZATION_LEVEL: "-Owholemodule"
dependencies: []
scheme:
testTargets: []
environmentVariables:
- variable: OS_ACTIVITY_MODE
value: "default"
isEnabled: true
# ─── Privileged Helper Target ───────────────────────────────
com.adminrights.manager.helper:
type: tool
platform: macOS
sources:
- path: AdminRightsHelper
excludes:
- "*.plist"
- "**/.DS_Store"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.adminrights.manager.helper
PRODUCT_NAME: com.adminrights.manager.helper
INSTALL_PATH: /Library/PrivilegedHelperTools
SKIP_INSTALL: NO
CODE_SIGN_STYLE: Automatic
configs:
Debug:
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
Release:
SWIFT_OPTIMIZATION_LEVEL: "-Owholemodule"
scheme:
testTargets: []