Merge pull request #1737 from jcanizales/test
Merge beta-3.1 fixes into beta-3 branch
Showing
... | @@ -5,11 +5,12 @@ | ... | @@ -5,11 +5,12 @@ |
# dependent projects use the :git notation to refer to the library. | # dependent projects use the :git notation to refer to the library. | ||
Pod::Spec.new do |s| | Pod::Spec.new do |s| | ||
s.name = 'Protobuf' | s.name = 'Protobuf' | ||
s.version = '3.0.0-beta-2' | s.version = '3.0.0-beta-3.1' | ||
s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.' | s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.' | ||
s.homepage = 'https://github.com/google/protobuf' | s.homepage = 'https://github.com/google/protobuf' | ||
s.license = 'New BSD' | s.license = 'New BSD' | ||
s.authors = { 'The Protocol Buffers contributors' => 'protobuf@googlegroups.com' } | s.authors = { 'The Protocol Buffers contributors' => 'protobuf@googlegroups.com' } | ||
s.cocoapods_version = '>= 1.0' | |||
s.source = { :git => 'https://github.com/google/protobuf.git', | s.source = { :git => 'https://github.com/google/protobuf.git', | ||
:tag => "v#{s.version}" } | :tag => "v#{s.version}" } | ||
... | @@ -32,7 +33,10 @@ Pod::Spec.new do |s| | ... | @@ -32,7 +33,10 @@ Pod::Spec.new do |s| |
# The following would cause duplicate symbol definitions. GPBProtocolBuffers is expected to be | # The following would cause duplicate symbol definitions. GPBProtocolBuffers is expected to be | ||
# left out, as it's an umbrella implementation file. | # left out, as it's an umbrella implementation file. | ||
s.exclude_files = 'objectivec/GPBProtocolBuffers.m' | s.exclude_files = 'objectivec/GPBProtocolBuffers.m' | ||
s.header_mappings_dir = 'objectivec' | |||
# 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' } | |||
s.ios.deployment_target = '7.1' | s.ios.deployment_target = '7.1' | ||
s.osx.deployment_target = '10.9' | s.osx.deployment_target = '10.9' | ||
... | ... |
objectivec/.gitignore
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Please
register
or
sign in
to comment