forked from ColdGrub1384/Pyto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
32 lines (27 loc) · 1.23 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
project 'Pyto.xcodeproj'
# 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
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 "Color-Picker-for-iOS", :git => 'https://github.com/ColdGrub1384/Color-Picker-for-iOS.git'
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
end
end
end