-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
110 lines (103 loc) · 3.4 KB
/
Copy pathproject.yml
File metadata and controls
110 lines (103 loc) · 3.4 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: PinPointCapture
options:
bundleIdPrefix: org.pinpointstudio
deploymentTarget:
iOS: "18.0"
createIntermediateGroups: true
generateEmptyDirectories: true
groupSortPosition: top
# The .xcodeproj is generated from this file and is gitignored.
# Never edit the project in Xcode's UI and expect it to survive `make gen`.
settings:
base:
SWIFT_VERSION: "6.0" # Swift 6 language mode
SWIFT_STRICT_CONCURRENCY: complete # explicit, not merely implied by the mode
SWIFT_UPCOMING_FEATURE_EXISTENTIAL_ANY: YES
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: WKLCK77L4U
ENABLE_USER_SCRIPT_SANDBOXING: YES
CLANG_ENABLE_MODULES: YES
ALWAYS_SEARCH_USER_PATHS: NO
ENABLE_MODULE_VERIFIER: NO
configs:
Debug:
SWIFT_ACTIVE_COMPILATION_CONDITIONS: DEBUG
ONLY_ACTIVE_ARCH: YES
Release:
SWIFT_COMPILATION_MODE: wholemodule
packages:
# First-party local package. ⛔ It links no platform framework, which is how
# REQ-PORT-3 becomes a build error rather than something to remember to grep.
CaptureCore:
path: Packages/Core
targets:
PinPointCapture:
type: application
platform: iOS
# Whole-tree glob: new files under Sources/ are picked up without touching this file.
sources:
- path: Sources
excludes:
- "**/*.md"
- "**/.gitkeep"
- "**/.DS_Store"
dependencies:
- package: CaptureCore
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: org.pinpointstudio.capture
PRODUCT_NAME: PinPointCapture
INFOPLIST_FILE: Support/Info.plist
# PPCP-RV §6. ⚠ A device build needs the Hotspot Configuration capability
# on the App ID; see the comment in the file.
CODE_SIGN_ENTITLEMENTS: Support/PinPointCapture.entitlements
GENERATE_INFOPLIST_FILE: NO
TARGETED_DEVICE_FAMILY: "1,2" # iPhone + iPad
MARKETING_VERSION: "0.1.0"
CURRENT_PROJECT_VERSION: "1"
SUPPORTS_MACCATALYST: NO
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD: NO
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD: NO
ENABLE_PREVIEWS: YES
# The app tint. Without this every stock control ships system blue, against the
# design rule that green is the only brand tint (docs/design/mockup v1 README).
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: Accent
# No app icon yet. Set this to the icon set's name once one exists,
# otherwise actool fails on a catalog that has no "AppIcon".
ASSETCATALOG_COMPILER_APPICON_NAME: ""
PinPointCaptureTests:
type: bundle.unit-test
platform: iOS
sources:
- path: Tests
excludes:
- "**/*.md"
- "**/.gitkeep"
- "**/.DS_Store"
dependencies:
- target: PinPointCapture
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: org.pinpointstudio.capture.tests
GENERATE_INFOPLIST_FILE: YES
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/PinPointCapture.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/PinPointCapture"
BUNDLE_LOADER: "$(TEST_HOST)"
schemes:
PinPointCapture:
build:
targets:
PinPointCapture: all
PinPointCaptureTests: [test]
run:
config: Debug
test:
config: Debug
gatherCoverageData: true
targets:
- PinPointCaptureTests
profile:
config: Release
analyze:
config: Debug
archive:
config: Release