-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
52 lines (50 loc) · 1.35 KB
/
Copy pathproject.yml
File metadata and controls
52 lines (50 loc) · 1.35 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
name: Matcha
options:
bundleIdPrefix: com.matcha
deploymentTarget:
macOS: "13.0"
xcodeVersion: "15.0"
generateEmptyDirectories: true
settings:
base:
MARKETING_VERSION: "1.0.2"
CURRENT_PROJECT_VERSION: "2"
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "13.0"
CODE_SIGN_IDENTITY: "-"
CODE_SIGN_STYLE: Automatic
targets:
Matcha:
type: application
platform: macOS
sources:
- path: Sources
excludes:
- "**/.DS_Store"
- path: Resources
buildPhase: resources
excludes:
- "**/.DS_Store"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.matcha.Matcha
INFOPLIST_FILE: Sources/Info.plist
CODE_SIGN_ENTITLEMENTS: Sources/Matcha.entitlements
LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/../Frameworks"
COMBINE_HIDPI_IMAGES: YES
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
entitlements:
path: Sources/Matcha.entitlements
MatchaTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests/MatchaTests
dependencies:
- target: Matcha
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.matcha.MatchaTests
GENERATE_INFOPLIST_FILE: YES
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/Matcha.app/Contents/MacOS/Matcha"
BUNDLE_LOADER: "$(TEST_HOST)"