-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.yml
More file actions
56 lines (52 loc) · 1.22 KB
/
Copy pathproject.yml
File metadata and controls
56 lines (52 loc) · 1.22 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
name: cc-hdrm
options:
bundleIdPrefix: com.cc-hdrm
deploymentTarget:
macOS: "14.0"
xcodeVersion: "26.2"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "6.0"
MACOSX_DEPLOYMENT_TARGET: "14.0"
DEVELOPMENT_TEAM: HHTRL92UZR
CODE_SIGN_STYLE: Automatic
schemes:
cc-hdrm:
build:
targets:
cc-hdrm: all
cc-hdrmTests: [test]
test:
targets:
- cc-hdrmTests
targets:
cc-hdrm:
type: application
platform: macOS
sources:
- path: cc-hdrm
excludes:
- "**/.gitkeep"
settings:
base:
INFOPLIST_FILE: cc-hdrm/Info.plist
CODE_SIGN_ENTITLEMENTS: cc-hdrm/cc_hdrm.entitlements
PRODUCT_BUNDLE_IDENTIFIER: com.cc-hdrm.app
PRODUCT_NAME: cc-hdrm
GENERATE_INFOPLIST_FILE: false
cc-hdrmTests:
type: bundle.unit-test
platform: macOS
sources:
- path: cc-hdrmTests
excludes:
- "**/.gitkeep"
dependencies:
- target: cc-hdrm
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.cc-hdrm.tests
GENERATE_INFOPLIST_FILE: true
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/cc-hdrm.app/Contents/MacOS/cc-hdrm"
BUNDLE_LOADER: "$(TEST_HOST)"