forked from outfoxx/Shield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.yml
79 lines (76 loc) · 1.86 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
name: ShieldTest
packages:
Shield:
url: https://github.com/outfoxx/Shield.git
from: 0.0.0
localPackages:
- ../Shield
options:
bundleIdPrefix: io.outfoxx
targets:
ShieldWrap:
type: framework.static
platform: [macOS, iOS, tvOS, watchOS]
deploymentTarget:
macOS: 10.12
iOS: 10.0
tvOS: 10.0
watchOS: 3.0
sources: []
info:
path: Project/${platform}/Info.plist
scheme:
testTargets:
- ShieldTests_${platform}
dependencies:
- package: Shield
settings:
PRODUCT_BUNDLE_IDENTIFIER: io.outfoxx.ShieldWrap
ShieldHost:
type: application
platform: [macOS, iOS, tvOS, watchOS]
deploymentTarget:
macOS: 10.12
iOS: 10.0
tvOS: 10.0
watchOS: 3.0
sources:
- path: TestHosts/${platform}
createIntermediateGroups: true
info:
path: Project/${platform}Host/Info.plist
entitlements:
path: Project/${platform}Host/Host.entitlements
properties:
keychain-access-groups: []
settings:
PRODUCT_BUNDLE_IDENTIFIER: io.outfoxx.ShieldHost
ShieldTests:
type: bundle.unit-test
platform: [iOS, tvOS, watchOS]
deploymentTarget:
iOS: 10.0
tvOS: 10.0
watchOS: 3.0
sources: [Tests]
dependencies:
- target: ShieldWrap_${platform}
link: true
- target: ShieldHost_${platform}
link: false
settings:
GENERATE_INFOPLIST_FILE: true
TEST_HOST: $(BUILT_PRODUCTS_DIR)/ShieldHost.app/ShieldHost
ShieldTests_macOS:
type: bundle.unit-test
platform: macOS
deploymentTarget: 10.12
sources: [Tests]
dependencies:
- target: ShieldWrap_macOS
link: true
- target: ShieldHost_macOS
link: false
settings:
GENERATE_INFOPLIST_FILE: true
TEST_HOST: $(BUILT_PRODUCTS_DIR)/ShieldHost.app/Contents/MacOS/ShieldHost