-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathproject.yml
39 lines (38 loc) · 986 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
name: Ciao
options:
bundleIdPrefix: xyz.tavares.ciao
targets:
Ciao:
type: framework
platform: [iOS, tvOS, macOS]
deploymentTarget: "9.0"
settings:
# ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES: YES
MACOSX_DEPLOYMENT_TARGET: 10.13
sources: Sources/Ciao
scheme:
testTargets:
- CiaoTests_${platform}
Example:
type: application
platform: iOS
deploymentTarget: "10.0"
sources: Example
dependencies:
- target: Ciao_iOS
CiaoTests:
type: bundle.unit-test
platform: [iOS, tvOS]
sources: Tests/CiaoTests
dependencies:
- target: Ciao_${platform}
settings:
LD_RUNPATH_SEARCH_PATHS: "@executable_path/../Frameworks @loader_path/../Frameworks"
CiaoTests_macOS:
type: bundle.unit-test
platform: macOS
sources: Tests/CiaoTests
dependencies:
- target: Ciao_macOS
settings:
LD_RUNPATH_SEARCH_PATHS: "@executable_path/../Frameworks @loader_path/../Frameworks"