-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
80 lines (61 loc) · 1.88 KB
/
Podfile
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
72
73
74
75
76
77
78
79
80
# Uncomment the next line to define a global platform for your project
platform :ios, '12.1'
workspace 'ARProgramming'
# Shared dependency injection framework
def swinject
pod 'Swinject', '~> 2.6'
end
target 'ARProgramming' do
project 'ARProgramming/ARProgramming'
use_frameworks!
# Pods for ARProgramming
swinject
pod 'SwinjectStoryboard', '~> 2.2'
target 'ARProgrammingTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'ProgramModel' do
project 'ProgramModel/ProgramModel'
use_frameworks!
# Pods for ProgramModel
swinject
target 'ProgramModelTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'Level' do
project 'Level/Level'
use_frameworks!
# Pods for Level
swinject
target 'LevelTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'EntityComponentSystem' do
project 'EntityComponentSystem/EntityComponentSystem'
use_frameworks!
# Pods for EntityComponentSystem
swinject
target 'EntityComponentSystemTests' do
inherit! :search_paths
# Pods for testing
end
end
# All credit goes to Tracy Keeling (icecrystal23) for providing this fix to a bug in Xcode 10.1
# See: https://github.com/CocoaPods/CocoaPods/issues/8139
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# This works around a unit test issue introduced in Xcode 10.
# We only apply it to the Debug configuration to avoid bloating the app size
if config.name == "Debug" && defined?(target.product_type) && target.product_type == "com.apple.product-type.framework"
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = "YES"
end
end
end
end