-
Notifications
You must be signed in to change notification settings - Fork 1
/
unified-project.yml
48 lines (48 loc) · 1011 Bytes
/
unified-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
name: XcodeGenSample
options:
bundleIdPrefix: com.frontado
deploymentTarget:
iOS: 13.0
targets:
XcodeGenSample:
type: application
platform: iOS
sources:
- path: XcodeGenSample
dependencies:
- target: Authentication
- target: Profile
scheme:
testTargets:
- XcodeGenSampleTests
XcodeGenSampleTests:
type: bundle.unit-test
platform: iOS
sources:
- path: XcodeGenSampleTests
Authentication:
type: framework
platform: iOS
sources:
- path: Subprojects/Authentication
scheme:
testTargets:
- AuthenticationTests
AuthenticationTests:
type: bundle.unit-test
platform: iOS
sources:
- path: Subprojects/AuthenticationTests
Profile:
type: framework
platform: iOS
sources:
- path: Subprojects/Profile
scheme:
testTargets:
- ProfileTests
ProfileTests:
type: bundle.unit-test
platform: iOS
sources:
- path: Subprojects/ProfileTests