SwiftProtobuf.podspec 688 B

123456789101112131415161718192021
  1. Pod::Spec.new do |s|
  2. s.name = 'SwiftProtobuf'
  3. s.version = '1.25.2'
  4. s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
  5. s.summary = 'Swift Protobuf code generator plugin and runtime library'
  6. s.homepage = 'https://github.com/apple/swift-protobuf'
  7. s.author = 'Apple Inc.'
  8. s.source = { :git => 'https://github.com/apple/swift-protobuf.git', :tag => s.version }
  9. s.requires_arc = true
  10. s.ios.deployment_target = '9.0'
  11. s.osx.deployment_target = '10.11'
  12. s.tvos.deployment_target = '9.0'
  13. s.watchos.deployment_target = '2.0'
  14. s.cocoapods_version = '>= 1.7.0'
  15. s.source_files = 'Sources/SwiftProtobuf/**/*.swift'
  16. s.swift_versions = ['4.0', '4.2', '5.0']
  17. end