blob: 0bbd06df0172b87e6cde9dd646ef9149d86934de [file] [log] [blame]
Jorge Canizales249483e2015-06-01 19:55:27 -07001# This file describes to Cocoapods how to integrate the Objective-C runtime into a dependent
2# project.
3# Despite this file being specific to Objective-C, it needs to be on the root of the repository.
4# Otherwise, Cocoapods gives trouble like not picking up the license file correctly, or not letting
5# dependent projects use the :git notation to refer to the library.
Jorge Canizales687a5fe2015-05-13 19:54:55 -07006Pod::Spec.new do |s|
7 s.name = 'Protobuf'
Jorge Canizalesb40e1252016-01-15 20:21:46 -08008 s.version = '3.0.0-beta-2'
Jorge Canizales687a5fe2015-05-13 19:54:55 -07009 s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.'
10 s.homepage = 'https://github.com/google/protobuf'
11 s.license = 'New BSD'
Jorge Canizales592c44f2015-05-14 14:16:40 -070012 s.authors = { 'The Protocol Buffers contributors' => 'protobuf@googlegroups.com' }
Jorge Canizales687a5fe2015-05-13 19:54:55 -070013
Jorge Canizalesf492dd82016-02-10 19:19:17 -080014 s.source = { :git => 'https://github.com/google/protobuf.git',
15 :tag => "v#{s.version}" }
16
TeBoringfe982642015-08-26 23:55:33 -070017 s.source_files = 'objectivec/*.{h,m}',
18 'objectivec/google/protobuf/Any.pbobjc.{h,m}',
19 'objectivec/google/protobuf/Api.pbobjc.{h,m}',
TeBoringfe982642015-08-26 23:55:33 -070020 'objectivec/google/protobuf/Duration.pbobjc.h',
21 'objectivec/google/protobuf/Empty.pbobjc.{h,m}',
22 'objectivec/google/protobuf/FieldMask.pbobjc.{h,m}',
23 'objectivec/google/protobuf/SourceContext.pbobjc.{h,m}',
24 'objectivec/google/protobuf/Struct.pbobjc.{h,m}',
25 'objectivec/google/protobuf/Timestamp.pbobjc.h',
Jorge Canizalesaf66e902015-09-04 13:16:40 -070026 'objectivec/google/protobuf/Type.pbobjc.{h,m}',
TeBoringfe982642015-08-26 23:55:33 -070027 'objectivec/google/protobuf/Wrappers.pbobjc.{h,m}'
28 # Timestamp.pbobjc.m and Duration.pbobjc.m are #imported by GPBWellKnownTypes.m. So we can't
29 # compile them (duplicate symbols), but we need them available for the importing:
30 s.preserve_paths = 'objectivec/google/protobuf/Duration.pbobjc.m',
31 'objectivec/google/protobuf/Timestamp.pbobjc.m'
32 # The following would cause duplicate symbol definitions. GPBProtocolBuffers is expected to be
33 # left out, as it's an umbrella implementation file.
34 s.exclude_files = 'objectivec/GPBProtocolBuffers.m'
Jorge Canizales687a5fe2015-05-13 19:54:55 -070035 s.header_mappings_dir = 'objectivec'
36
Bo Yangd58e95b2015-07-22 14:54:52 -070037 s.ios.deployment_target = '7.1'
38 s.osx.deployment_target = '10.9'
Jorge Canizales687a5fe2015-05-13 19:54:55 -070039 s.requires_arc = false
40end