-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.yml
More file actions
50 lines (50 loc) · 1.21 KB
/
project.yml
File metadata and controls
50 lines (50 loc) · 1.21 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
name: DataKit
options:
bundleIdPrefix: io.supersimple.swiftcommon
deploymentTarget:
macOS: 10.12
iOS: 12.0
settings:
base:
SWIFT_VERSION: 5.0
BUILD_LIBRARY_FOR_DISTRIBUTION: YES
configs:
Release:
SWIFT_COMPILATION_MODE: wholemodule
Debug:
SWIFT_COMPILATION_MODE: incremental
targets:
DataKit:
type: framework
platform: [macOS, iOS]
sources:
- Sources/DataKit
scheme:
testTargets:
- DataKitTests_${platform}
gatherCoverageData: true
DataKitBenchmark:
type: tool
platform: macOS
settings:
base:
BUILD_LIBRARY_FOR_DISTRIBUTION: NO
SWIFT_FORCE_DYNAMIC_LINK_STDLIB: YES
SWIFT_FORCE_STATIC_LINK_STDLIB: NO
LD_RUNPATH_SEARCH_PATHS: "$(inherited)"
SWIFT_OBJC_BRIDGING_HEADER: Sources/DataKitBenchmark/BenchmarkBridgingHeader.h
sources:
- Sources/DataKitBenchmark
dependencies:
- target: DataKit_macOS
DataKitTests:
type: bundle.unit-test
platform: [macOS, iOS]
sources:
- Tests/DataKitTests
resources:
- Tests/DataKitTests/Resources
dependencies:
- target: DataKit_${platform}
- carthage: Nimble
buildImplicitDependencies: true