-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
55 lines (55 loc) · 1.32 KB
/
project.yml
File metadata and controls
55 lines (55 loc) · 1.32 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
name: FastUI
schemes:
FastUI8:
build:
targets:
FastUI8: build
FastUI13:
build:
targets:
FastUI13: build
targets:
FastUI8:
type: framework
platform: iOS
settings:
INFOPLIST_FILE: plists/Info.plist
IPHONEOS_DEPLOYMENT_TARGET: 8.0
PRODUCT_BUNDLE_IDENTIFIER: com.muiz.idn.$(TARGET_NAME)
sources:
- path: Sources/FastUI8
includes:
- "*.{swift}"
dependencies:
- carthage: FlexLayout
FastUI13:
type: framework
platform: iOS
settings:
INFOPLIST_FILE: plists/Info.plist
IPHONEOS_DEPLOYMENT_TARGET: 13.0
PRODUCT_BUNDLE_IDENTIFIER: com.muiz.idn.$(TARGET_NAME)
sources:
- path: Sources/FastUI13
includes:
- "*.{swift}"
FastUIApp:
type: application
platform: iOS
settings:
INFOPLIST_FILE: App/FastUIApp/Info.plist
IPHONEOS_DEPLOYMENT_TARGET: 8.0
PRODUCT_BUNDLE_IDENTIFIER: com.muiz.idn.$(TARGET_NAME)
sources: App/FastUIApp
dependencies:
- target: FastUI8
SwiftUIApp:
type: application
platform: iOS
settings:
INFOPLIST_FILE: App/SwiftUIApp/Info.plist
IPHONEOS_DEPLOYMENT_TARGET: 13.0
PRODUCT_BUNDLE_IDENTIFIER: com.muiz.idn.$(TARGET_NAME)
sources: App/SwiftUIApp
dependencies:
- target: FastUI13