mirror of
https://github.com/ZipArchive/ZipArchive.git
synced 2026-05-31 10:27:32 +00:00
* Bumped Minimum Deployment Target * Updated for Xcode 12 * Podspec bump minimum deployment target * Fixed Quoted Brackets xcode 12 warning * Fixed Carthage Example * Fixed Example Tests * Updated Readme * Update .travis.yml Support xcode12. * Update .travis.yml Co-authored-by: wilson chen <willson.chenwx@gmail.com>
35 lines
563 B
Ruby
35 lines
563 B
Ruby
source 'https://cdn.cocoapods.org/'
|
|
|
|
# inhibit_all_warnings!
|
|
use_frameworks!
|
|
|
|
abstract_target 'core' do
|
|
|
|
pod 'SSZipArchive', :path => '..'
|
|
|
|
target 'ObjectiveCExample' do
|
|
platform :ios, '9.0'
|
|
end
|
|
|
|
target 'ObjectiveCExampleTests_iOS' do
|
|
platform :ios, '9.0'
|
|
end
|
|
|
|
target 'ObjectiveCExampleTests_macOS' do
|
|
platform :osx, '10.9'
|
|
end
|
|
|
|
target 'ObjectiveCExampleTests_tvOS' do
|
|
platform :tvos, '9.0'
|
|
end
|
|
|
|
target 'SwiftExample' do
|
|
platform :ios, '9.0'
|
|
end
|
|
|
|
target 'SwiftExample_macOS' do
|
|
platform :osx, '10.9'
|
|
end
|
|
|
|
end
|