forked from dongyuwei/hallelujahIM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
24 lines (20 loc) · 690 Bytes
/
Copy pathPodfile
File metadata and controls
24 lines (20 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
platform :osx, '13.5.2'
use_frameworks!
target 'hallelujah' do
pod 'FMDB'
pod "GCDWebServer", "~> 3.0"
pod 'MDCDamerauLevenshtein', :git => 'https://github.com/modocache/MDCDamerauLevenshtein.git', :branch => 'master'
end
target 'Tests' do
pod 'FMDB'
pod 'MDCDamerauLevenshtein', :git => 'https://github.com/modocache/MDCDamerauLevenshtein.git', :branch => 'master'
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = 'RECOMMENDED_MACOSX_DEPLOYMENT_TARGET'
end
end
end
end