-
Notifications
You must be signed in to change notification settings - Fork 17
/
Podfile
85 lines (65 loc) · 2.39 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
81
82
83
84
85
workspace 'Pyto'
project 'Pyto'
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Pyto' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Pyto
inhibit_all_warnings!
pod 'SplitKit', :git => 'https://github.com/ColdGrub1384/SplitKit.git'
pod 'SourceEditor', :git => 'https://github.com/ColdGrub1384/source-editor.git'
pod 'Zip'
pod 'Down', :git => 'https://github.com/ColdGrub1384/Down.git'
pod 'FileBrowser', :git => 'https://github.com/ColdGrub1384/FileBrowser.git'
pod 'MultiPeer'
pod 'SwiftyStoreKit'
pod 'ObjectUserDefaults'
pod 'TrueTime'
pod 'Highlightr', :git => 'https://github.com/brunophilipe/Highlightr.git'
pod "GCDWebServer", "~> 3.0"
pod 'freetype2'
pod 'SwiftSoup'
end
target 'SwiftUI Preview' do
use_frameworks!
inhibit_all_warnings!
pod 'Highlightr', :git => 'https://github.com/brunophilipe/Highlightr.git'
end
target 'WidgetExtension' do
use_frameworks!
inhibit_all_warnings!
pod 'freetype2'
end
target 'Pyto Screenshots' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Pyto
inhibit_all_warnings!
pod 'SplitKit', :git => 'https://github.com/ColdGrub1384/SplitKit.git'
pod 'SourceEditor', :git => 'https://github.com/ColdGrub1384/source-editor.git'
pod 'Zip'
pod 'Down', :git => 'https://github.com/ColdGrub1384/Down.git'
pod 'FileBrowser', :git => 'https://github.com/ColdGrub1384/FileBrowser.git'
pod 'MultiPeer'
pod 'SwiftyStoreKit'
pod 'ObjectUserDefaults'
pod 'TrueTime'
pod 'Highlightr', :git => 'https://github.com/brunophilipe/Highlightr.git'
pod 'freetype2'
pod 'SwiftSoup'
end
# post install
post_install do |installer|
# Build settings
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings = config.build_settings.dup
if config.build_settings['PRODUCT_MODULE_NAME'] == 'SavannaKit' || config.build_settings['PRODUCT_MODULE_NAME'] == 'SourceEditor' || config.build_settings['PRODUCT_MODULE_NAME'] == 'SplitKit'
puts "Set Swift version"
config.build_settings['SWIFT_VERSION'] = '4.0'
end
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "11.0"
end
end
end