forked from gematik/ref-CardReaderProvider-ApiKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.yml
64 lines (64 loc) · 1.78 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
name: CardReaderProviderApi
options:
bundleIdPrefix: de.silpion.ti.cardreader.provider
deploymentTarget:
macOS: 10.15
iOS: 17.2
settings:
base:
GENERATE_INFOPLIST_FILE: YES
DEVELOPMENT_TEAM: 67X5G8WXSG
SWIFT_VERSION: 5.0
ALWAYS_SEARCH_USER_PATHS: NO
FRAMEWORK_SEARCH_PATHS: "$(inherited)"
configs:
Release:
SWIFT_COMPILATION_MODE: wholemodule
Debug:
SWIFT_COMPILATION_MODE: incremental
targets:
CardReaderProviderApi:
type: framework
platform: [iOS,macOS]
sources:
- Sources/CardReaderProviderApi
info:
path: Resources/CardReaderProviderApi_Info.plist
dependencies:
- framework: "Carthage/Build/GemCommonsKit.xcframework"
scheme:
testTargets:
- CardReaderProviderApiTests_${platform}
gatherCoverageData: true
CardReaderAccess:
type: framework
platform: [iOS,macOS]
sources:
- Sources/CardReaderAccess
info:
path: Resources/CardReaderAccess_Info.plist
dependencies:
- target: CardReaderProviderApi_${platform}
- framework: "Carthage/Build/GemCommonsKit.xcframework"
scheme:
testTargets:
- CardReaderAccessTests_${platform}
gatherCoverageData: true
CardReaderProviderApiTests:
type: bundle.unit-test
platform: [macOS,iOS]
sources:
- Tests/CardReaderProviderApiTests
dependencies:
- target: CardReaderProviderApi_${platform}
- framework: "Carthage/Build/Nimble.xcframework"
CardReaderAccessTests:
type: bundle.unit-test
platform: [macOS,iOS]
sources:
- Tests/CardReaderAccessTests
dependencies:
- target: CardReaderAccess_${platform}
- target: CardReaderProviderApi_${platform}
- framework: "Carthage/Build/Nimble.xcframework"
buildImplicitDependencies: true