-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.yml
149 lines (139 loc) · 3.34 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
name: KTS
options:
deploymentTarget:
iOS: "16.0"
bundleIdPrefix: com.ayrenking
settings:
base:
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS: YES
DEVELOPMENT_TEAM: P649CF844Y
CODE_SIGN_STYLE: Automatic
CODE_SIGN_IDENTITY: iPhone Developer
configs:
Debug: debug
Release: release
packages:
SQLite:
url: https://github.com/stephencelis/SQLite.swift.git
branch: master
targets:
KTS:
type: application
platform: iOS
sources: [KTS]
settings:
base:
INFOPLIST_FILE: KTS/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: com.ayrenking.Kicking-the-Sheets
PRODUCT_NAME: KTS
CURRENT_PROJECT_VERSION: 4
MARKETING_VERSION: 2.1
LD_RUNPATH_SEARCH_PATHS: $(inherited) @executable_path/Frameworks
CODE_SIGN_ENTITLEMENTS: KTS/KTS.entitlements
ENABLE_USER_SCRIPT_SANDBOXING: true
INFOPLIST_KEY_UILaunchStoryboardName: LaunchScreen.storyboard
dependencies:
- framework: Services.framework
implicit: true
- framework: Shared.framework
implicit: true
- target: DailyProgressWidget
Services:
type: framework
platform: iOS
sources: [Services]
settings:
base:
ENABLE_MODULE_VERIFIER: true
MODULE_VERIFIER_SUPPORTED_LANGUAGES: objective-c objective-c++
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS: gnu11 gnu++14
dependencies:
- package: SQLite
Shared:
type: framework
platform: iOS
sources: [Shared]
settings:
base:
ENABLE_MODULE_VERIFIER: true
MODULE_VERIFIER_SUPPORTED_LANGUAGES: objective-c objective-c++
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS: gnu11 gnu++14
dependencies:
- framework: Services.framework
KTSTests:
type: bundle.unit-test
platform: iOS
sources: [KTSTests]
settings:
configs:
dependencies:
- target: KTS
type: regular
optional: true
- package: SQLite
type: regular
optional: true
KTSUITests:
type: bundle.ui-testing
platform: iOS
deploymentTarget: "16.0"
sources: [KTSUITests]
settings:
configs:
dependencies:
- target: KTS
type: regular
optional: true
- package: SQLite
type: regular
optional: true
DailyProgressWidget:
type: app-extension
platform: iOS
deploymentTarget: "17.0"
sources: [DailyProgressWidget]
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.ayrenking.Kicking-the-Sheets.DailyProgressWidget
CODE_SIGN_ENTITLEMENTS: DailyProgressWidget/DailyProgressWidget.entitlements
dependencies:
- target: Services
- target: Shared
schemes:
Debug:
templates:
- Default
run:
config: Debug
Release:
templates:
- Default
run:
config: Release
DailyProgressWidget:
build:
targets:
DailyProgressWidget: all
schemeTemplates:
Default:
build:
targets:
KTS: all
KTSTests: [test]
test:
config: Debug
gatherCoverageData: true
coverageTargets:
- KTS
- Shared
- Services
targets:
- name: KTSTests
randomExecutionOrder: true
profile:
config: Release
analyze:
config: Debug
archive:
config: Release
revealArchiveOrganizer: false