-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.yml
More file actions
57 lines (57 loc) · 1.64 KB
/
Copy pathproject.yml
File metadata and controls
57 lines (57 loc) · 1.64 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
name: Nudge
options:
bundleIdPrefix: app.nudge
deploymentTarget:
macOS: "11.0"
xcodeVersion: "15.0"
minimumXcodeGenVersion: "2.35"
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "11.0"
CODE_SIGN_IDENTITY: "Developer ID Application"
DEVELOPMENT_TEAM: $(NUDGE_TEAM_ID)
CODE_SIGN_STYLE: Manual
PRODUCT_BUNDLE_IDENTIFIER: app.nudge.Nudge
INFOPLIST_FILE: Nudge/App/Info.plist
ENABLE_APP_SANDBOX: false
ENABLE_HARDENED_RUNTIME: true
targets:
Nudge:
type: application
platform: macOS
sources:
- path: Nudge
attributes:
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
entitlements:
path: Nudge/App/Nudge.entitlements
settings:
base:
INFOPLIST_FILE: Nudge/App/Info.plist
ENABLE_APP_SANDBOX: false
CODE_SIGN_ENTITLEMENTS: Nudge/App/Nudge.entitlements
LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/../Frameworks"
info:
path: Nudge/App/Info.plist
properties:
LSUIElement: true
CFBundleName: Nudge
CFBundleDisplayName: Nudge
CFBundleIdentifier: app.nudge.Nudge
CFBundleVersion: "1"
CFBundleShortVersionString: "1.0.3"
NSAccessibilityUsageDescription: "Nudge needs accessibility access to move and resize windows."
LSMinimumSystemVersion: "11.0"
NSPrincipalClass: NSApplication
NudgeTests:
type: bundle.unit-test
platform: macOS
sources:
- path: NudgeTests
dependencies:
- target: Nudge
settings:
base:
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/Nudge.app/Contents/MacOS/Nudge"
BUNDLE_LOADER: "$(TEST_HOST)"