-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
59 lines (55 loc) · 1.36 KB
/
Copy pathproject.yml
File metadata and controls
59 lines (55 loc) · 1.36 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
name: Breathe
options:
bundleIdPrefix: com.breathe
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.0"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "14.0"
targets:
Breathe:
type: application
platform: macOS
sources:
- path: Breathe
settings:
base:
INFOPLIST_FILE: Breathe/Resources/Info.plist
CODE_SIGN_ENTITLEMENTS: Breathe/Resources/Breathe.entitlements
PRODUCT_BUNDLE_IDENTIFIER: com.breathe.app
PRODUCT_NAME: Breathe
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
COMBINE_HIDPI_IMAGES: true
LD_RUNPATH_SEARCH_PATHS:
- $(inherited)
- "@executable_path/../Frameworks"
entitlements:
path: Breathe/Resources/Breathe.entitlements
properties:
com.apple.security.app-sandbox: false
com.apple.security.files.user-selected.read-only: true
BreatheTests:
type: bundle.unit-test
platform: macOS
sources:
- path: BreatheTests
dependencies:
- target: Breathe
settings:
base:
GENERATE_INFOPLIST_FILE: YES
PRODUCT_BUNDLE_IDENTIFIER: com.breathe.app.tests
schemes:
Breathe:
build:
targets:
Breathe: all
BreatheTests: [test]
run:
executable: Breathe
test:
targets:
- BreatheTests