-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.yml
45 lines (43 loc) · 995 Bytes
/
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
name: 1K
fileGroups:
- README.md
- project.yml
targets:
OneK macOS:
platform: macOS
type: application
settings:
PRODUCT_BUNDLE_IDENTIFIER: wtf.bogo.1k-macOS
PRODUCT_NAME: 1K
CODE_SIGN_ENTITLEMENTS: macOS.entitlements
sources:
- macOS
dependencies:
- target: OneKit_macOS
- sdk: Foundation.framework
- sdk: SwiftUI.framework
- sdk: AppKit.framework
OneK iOS:
platform: iOS
type: application
settings:
PRODUCT_BUNDLE_IDENTIFIER: wtf.bogo.1k-iOS
PRODUCT_NAME: 1K
CODE_SIGN_ENTITLEMENTS: iOS.entitlements
sources:
- iOS
dependencies:
- target: OneKit_iOS
- sdk: Foundation.framework
- sdk: SwiftUI.framework
- sdk: UIKit.framework
OneKit:
platform: [iOS, macOS]
type: framework
settings:
PRODUCT_BUNDLE_IDENTIFIER: wtf.bogo.1kit
PRODUCT_NAME: OneKit
sources:
- OneKit
dependencies:
- sdk: Combine.framework