forked from hughkli/Lookin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
21 lines (18 loc) · 690 Bytes
/
Copy pathPodfile
File metadata and controls
21 lines (18 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use_frameworks!
#inhibit_all_warnings!
target 'LookinClient' do
platform :osx, '11.0'
pod 'AppCenter'
pod 'ReactiveObjC', '3.1.0'
pod 'Sparkle', '~> 1.0'
pod 'LookinShared/Wireless', :git=>'https://github.com/nova286/LookinServer.git', :commit => '01460f6d6b857893afde77f7bbe2ca7adb70c012'
#pod 'LookinShared', :path=>'../LookinServer/'
end
# ReactiveObjc 之类的 SDK 的 deployment target 太低了导致无法编译,所以这里改成以项目为准
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET'
end
end
end