mirror of
https://github.com/apple/swift-protobuf.git
synced 2026-05-17 10:20:36 +00:00
29 lines
905 B
Ruby
29 lines
905 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SwiftProtobuf'
|
|
s.version = '1.36.0'
|
|
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
|
|
s.summary = 'Swift Protobuf Runtime Library'
|
|
s.homepage = 'https://github.com/apple/swift-protobuf'
|
|
s.author = 'Apple Inc.'
|
|
s.source = { :git => 'https://github.com/apple/swift-protobuf.git', :tag => s.version }
|
|
|
|
s.requires_arc = true
|
|
s.ios.deployment_target = '11.0'
|
|
s.osx.deployment_target = '10.13'
|
|
s.tvos.deployment_target = '11.0'
|
|
s.watchos.deployment_target = '4.0'
|
|
s.visionos.deployment_target = "1.0"
|
|
|
|
s.cocoapods_version = '>= 1.13.0'
|
|
|
|
# Support `package` visibility.
|
|
s.pod_target_xcconfig = {
|
|
'OTHER_SWIFT_FLAGS' => '-package-name SwiftProtobuf'
|
|
}
|
|
|
|
s.source_files = 'Sources/SwiftProtobuf/**/*.swift'
|
|
s.resource_bundle = {'SwiftProtobuf' => ['Sources/SwiftProtobuf/PrivacyInfo.xcprivacy']}
|
|
|
|
s.swift_versions = ['5.0']
|
|
end
|