forked from nark/WiredClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
28 lines (24 loc) · 820 Bytes
/
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
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
platform :osx, '10.13'
target 'Wired Client' do
pod 'SBJson4', '~> 4.0.0'
pod 'NSDate+TimeAgo'
end
target 'WiredNetworking' do
project 'vendor/WiredFrameworks/WiredFrameworks.xcodeproj'
workspace 'vendor/WiredFrameworks/WiredFrameworks.xcworkspace'
end
target 'libwired-osx' do
project 'vendor/WiredFrameworks/WiredFrameworks.xcodeproj'
workspace 'vendor/WiredFrameworks/WiredFrameworks.xcworkspace'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'SBJson4' || target.name == 'NSDate+TimeAgo'
target.build_configurations.each do |config|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.13'
end
end
end
end