forked from apple/swift-protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftProtobuf.podspec
More file actions
30 lines (25 loc) · 1.04 KB
/
SwiftProtobuf.podspec
File metadata and controls
30 lines (25 loc) · 1.04 KB
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
29
30
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'
s.pod_target_xcconfig = {
# Support the default `traits` from the package.
'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => '$(inherited) BinaryDelimitedStreams FieldMaskUtilities',
# Support `package` visibility.
'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