-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.yml
63 lines (63 loc) · 1.77 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
name: Markra
options:
bundleIdPrefix: ca.duan
configFiles:
Debug: xcconfigs/Debug.xcconfig
Release: xcconfigs/Release.xcconfig
packages:
ComposableArchitecture:
url: https://github.com/pointfreeco/swift-composable-architecture
exactVersion: 0.34.0
Introspect:
url: https://github.com/siteline/SwiftUI-Introspect.git
exactVersion: 0.1.4
SwiftMarkdown:
url: https://github.com/apple/swift-markdown
revision: swift-5.6-RELEASE
targets:
Markra:
type: application
platform: macOS
settings:
INFOPLIST_FILE: Markra/Resources/Info.plist
configFiles:
Debug: Markra/Resources/Shared.xcconfig
Release: Markra/Resources/Shared.xcconfig
sources: Markra
dependencies:
- target: Markdown2Jira
embed: true
codesign: true
- package: ComposableArchitecture
product: ComposableArchitecture
- package: Introspect
product: Introspect
postBuildScripts:
- script: Scripts/update-version.sh
name: Update version
scheme:
testTargets:
- Markdown2JiraTests
Markdown2Jira:
type: framework
platform: macOS
settings:
INFOPLIST_FILE: Markdown2Jira/Resources/Info.plist
configFiles:
Debug: Markdown2Jira/Resources/Shared.xcconfig
Release: Markdown2Jira/Resources/Shared.xcconfig
sources: [Markdown2Jira]
dependencies:
- package: SwiftMarkdown
product: Markdown
Markdown2JiraTests:
type: bundle.unit-test
platform: macOS
settings:
INFOPLIST_FILE: Markdown2JiraTests/Resources/Info.plist
configFiles:
Debug: Markdown2JiraTests/Resources/Shared.xcconfig
Release: Markdown2JiraTests/Resources/Shared.xcconfig
sources: Markdown2JiraTests
dependencies:
- target: Markdown2Jira