2015-06-02 02:55:27 +00:00
|
|
|
# This file describes to Cocoapods how to integrate the Objective-C runtime into a dependent
|
|
|
|
# project.
|
|
|
|
# Despite this file being specific to Objective-C, it needs to be on the root of the repository.
|
|
|
|
# Otherwise, Cocoapods gives trouble like not picking up the license file correctly, or not letting
|
|
|
|
# dependent projects use the :git notation to refer to the library.
|
2015-05-14 02:54:55 +00:00
|
|
|
Pod::Spec.new do |s|
|
|
|
|
s.name = 'Protobuf'
|
2022-05-27 16:37:14 +00:00
|
|
|
s.version = '3.21.1'
|
2015-05-14 02:54:55 +00:00
|
|
|
s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.'
|
2018-08-22 18:55:30 +00:00
|
|
|
s.homepage = 'https://github.com/protocolbuffers/protobuf'
|
2022-01-27 00:23:14 +00:00
|
|
|
s.license = 'BSD-3-Clause'
|
2015-05-14 21:16:40 +00:00
|
|
|
s.authors = { 'The Protocol Buffers contributors' => 'protobuf@googlegroups.com' }
|
2016-05-09 17:53:20 +00:00
|
|
|
s.cocoapods_version = '>= 1.0'
|
2015-05-14 02:54:55 +00:00
|
|
|
|
2018-08-22 18:55:30 +00:00
|
|
|
s.source = { :git => 'https://github.com/protocolbuffers/protobuf.git',
|
2016-02-11 03:19:17 +00:00
|
|
|
:tag => "v#{s.version}" }
|
|
|
|
|
2015-08-27 06:55:33 +00:00
|
|
|
s.source_files = 'objectivec/*.{h,m}',
|
2020-01-22 20:50:52 +00:00
|
|
|
'objectivec/google/protobuf/Any.pbobjc.h',
|
|
|
|
'objectivec/google/protobuf/Api.pbobjc.h',
|
|
|
|
'objectivec/google/protobuf/Duration.pbobjc.h',
|
|
|
|
'objectivec/google/protobuf/Empty.pbobjc.h',
|
|
|
|
'objectivec/google/protobuf/FieldMask.pbobjc.h',
|
|
|
|
'objectivec/google/protobuf/SourceContext.pbobjc.h',
|
|
|
|
'objectivec/google/protobuf/Struct.pbobjc.h',
|
|
|
|
'objectivec/google/protobuf/Timestamp.pbobjc.h',
|
|
|
|
'objectivec/google/protobuf/Type.pbobjc.h',
|
|
|
|
'objectivec/google/protobuf/Wrappers.pbobjc.h'
|
2015-08-27 06:55:33 +00:00
|
|
|
# The following would cause duplicate symbol definitions. GPBProtocolBuffers is expected to be
|
|
|
|
# left out, as it's an umbrella implementation file.
|
|
|
|
s.exclude_files = 'objectivec/GPBProtocolBuffers.m'
|
2016-05-09 17:53:20 +00:00
|
|
|
|
|
|
|
# Set a CPP symbol so the code knows to use framework imports.
|
|
|
|
s.user_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1' }
|
|
|
|
s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1' }
|
2015-05-14 02:54:55 +00:00
|
|
|
|
2020-11-10 15:05:50 +00:00
|
|
|
s.ios.deployment_target = '9.0'
|
2015-07-22 21:54:52 +00:00
|
|
|
s.osx.deployment_target = '10.9'
|
2017-06-14 19:56:41 +00:00
|
|
|
s.tvos.deployment_target = '9.0'
|
2016-08-17 20:52:06 +00:00
|
|
|
s.watchos.deployment_target = '2.0'
|
2015-05-14 02:54:55 +00:00
|
|
|
s.requires_arc = false
|
2022-04-26 16:43:54 +00:00
|
|
|
|
|
|
|
# The unittest need the generate sources from the testing related .proto
|
|
|
|
# files. So to add a `test_spec`, there would also need to be something like a
|
|
|
|
# `script_phases` to generate them, but there would also need to be a way to
|
|
|
|
# ensure `protoc` had be built. Another option would be to move to a model
|
|
|
|
# where the needed files are always generated and checked in. Neither of these
|
|
|
|
# seem that great at the moment, so the tests have *not* been wired into here
|
|
|
|
# at this time.
|
2015-05-14 02:54:55 +00:00
|
|
|
end
|