-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.yml
71 lines (71 loc) · 2.28 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
65
66
67
68
69
70
71
# generated with XCEProjectGenerator
# https://github.com/XCEssentials/ProjectGenerator
# https://github.com/workshop/struct/wiki/Spec-format:-v2.0
version: 2.1.0
configurations:
Debug:
type: "debug"
overrides:
IPHONEOS_DEPLOYMENT_TARGET: "8.0"
SWIFT_VERSION: "3.0"
VERSIONING_SYSTEM: "apple-generic"
CODE_SIGN_IDENTITY[sdk=iphoneos*]: ""
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
Release:
type: "release"
overrides:
IPHONEOS_DEPLOYMENT_TARGET: "8.0"
SWIFT_VERSION: "3.0"
VERSIONING_SYSTEM: "apple-generic"
CODE_SIGN_IDENTITY[sdk=iphoneos*]: ""
targets:
Fwk:
platform: "ios"
type: ":framework"
sources:
- "Sources"
configurations:
Debug:
PRODUCT_NAME: "XCEAssociatedStorage"
IPHONEOS_DEPLOYMENT_TARGET: "8.0"
PRODUCT_BUNDLE_IDENTIFIER: "io.XCEssentials.AssociatedStorage"
INFOPLIST_FILE: "Info/Fwk.plist"
SDKROOT: "iphoneos"
TARGETED_DEVICE_FAMILY: "1,2"
DEFINES_MODULE: "NO"
SKIP_INSTALL: "YES"
MTL_ENABLE_DEBUG_INFO: "true"
Release:
PRODUCT_NAME: "XCEAssociatedStorage"
IPHONEOS_DEPLOYMENT_TARGET: "8.0"
PRODUCT_BUNDLE_IDENTIFIER: "io.XCEssentials.AssociatedStorage"
INFOPLIST_FILE: "Info/Fwk.plist"
SDKROOT: "iphoneos"
TARGETED_DEVICE_FAMILY: "1,2"
DEFINES_MODULE: "NO"
SKIP_INSTALL: "YES"
Tests:
platform: "ios"
type: ":bundle.unit-test"
references:
- "Fwk"
sources:
- "Tests"
configurations:
Debug:
LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"
IPHONEOS_DEPLOYMENT_TARGET: "8.0"
PRODUCT_BUNDLE_IDENTIFIER: "io.XCEssentials.AssociatedStorage.Tst"
INFOPLIST_FILE: "Info/Tst.plist"
FRAMEWORK_SEARCH_PATHS: "$(inherited) $(BUILT_PRODUCTS_DIR)"
MTL_ENABLE_DEBUG_INFO: "true"
Release:
LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"
IPHONEOS_DEPLOYMENT_TARGET: "8.0"
PRODUCT_BUNDLE_IDENTIFIER: "io.XCEssentials.AssociatedStorage.Tst"
INFOPLIST_FILE: "Info/Tst.plist"
FRAMEWORK_SEARCH_PATHS: "$(inherited) $(BUILT_PRODUCTS_DIR)"
variants:
$base:
abstract: true
Main: