Squashed 'libs/protobuf/' content from commit fcd3b9a85
git-subtree-dir: libs/protobuf git-subtree-split: fcd3b9a85ef36e46643dc30176cea1a7ad62e02b
This commit is contained in:
40
Protobuf-C++.podspec
Normal file
40
Protobuf-C++.podspec
Normal file
@@ -0,0 +1,40 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'Protobuf-C++'
|
||||
s.version = '3.21.8'
|
||||
s.summary = 'Protocol Buffers v3 runtime library for C++.'
|
||||
s.homepage = 'https://github.com/google/protobuf'
|
||||
s.license = 'BSD-3-Clause'
|
||||
s.authors = { 'The Protocol Buffers contributors' => 'protobuf@googlegroups.com' }
|
||||
s.cocoapods_version = '>= 1.0'
|
||||
|
||||
s.source = { :git => 'https://github.com/google/protobuf.git',
|
||||
:tag => "v#{s.version}" }
|
||||
|
||||
s.source_files = 'src/google/protobuf/*.{h,cc,inc}',
|
||||
'src/google/protobuf/stubs/*.{h,cc}',
|
||||
'src/google/protobuf/io/*.{h,cc}',
|
||||
'src/google/protobuf/util/*.{h,cc}'
|
||||
|
||||
# Excluding all the tests in the directories above
|
||||
s.exclude_files = 'src/google/**/*_test.{h,cc,inc}',
|
||||
'src/google/**/*_unittest.{h,cc}',
|
||||
'src/google/protobuf/test_util*.{h,cc}',
|
||||
'src/google/protobuf/map_lite_test_util.{h,cc}',
|
||||
'src/google/protobuf/map_test_util*.{h,cc,inc}',
|
||||
'src/google/protobuf/reflection_tester.{h,cc}'
|
||||
|
||||
s.header_mappings_dir = 'src'
|
||||
|
||||
s.ios.deployment_target = '7.0'
|
||||
s.osx.deployment_target = '10.9'
|
||||
s.tvos.deployment_target = '9.0'
|
||||
s.watchos.deployment_target = '2.0'
|
||||
|
||||
s.pod_target_xcconfig = {
|
||||
# Do not let src/google/protobuf/stubs/time.h override system API
|
||||
'USE_HEADERMAP' => 'NO',
|
||||
'ALWAYS_SEARCH_USER_PATHS' => 'NO',
|
||||
'HEADER_SEARCH_PATHS' => '"$(PODS_TARGET_SRCROOT)/src"'
|
||||
}
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user