-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
project.yml
48 lines (44 loc) · 1.67 KB
/
project.yml
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
# Xcode project configuration. Managed by https://github.com/yonaskolb/XcodeGen
# Xcode is only used to build the release App Bundle. Debug builds only use Swift Package Manager
name: AeroSpace
packages:
AeroSpacePackage:
path: .
configs:
Debug: debug
Release: release
targets:
AeroSpace:
type: application
platform: macOS
deploymentTarget: "13.0"
sources:
- "Sources/AeroSpaceApp"
- "resources"
- "docs/config-examples/default-config.toml"
dependencies:
- package: AeroSpacePackage
product: AppBundle
# https://developer.apple.com/documentation/xcode/build-settings-reference
settings:
base:
SWIFT_VERSION: 5.9
GENERATE_INFOPLIST_FILE: YES
MARKETING_VERSION: ${XCODEGEN_AEROSPACE_VERSION}
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/20001431-108256
# Specifies whether the app runs as an agent app. If this key is set to YES, Launch Services runs the app as an agent app.
# Agent apps do not appear in the Dock or in the Force Quit window
INFOPLIST_KEY_LSUIElement: YES
CODE_SIGN_IDENTITY: ${XCODEGEN_AEROSPACE_CODE_SIGN_IDENTITY}
configs:
Debug:
PRODUCT_NAME: AeroSpace-Debug
PRODUCT_BUNDLE_IDENTIFIER: bobko.aerospace.debug
Release:
PRODUCT_NAME: AeroSpace
PRODUCT_BUNDLE_IDENTIFIER: bobko.aerospace
entitlements:
path: resources/AeroSpace.entitlements
properties:
# Accessibility API doesn't work in sandboxed app
com.apple.security.app-sandbox: false