| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- #
- # Be sure to run `pod lib lint FirebaseFirestore.podspec' to ensure this is a
- # valid spec before submitting.
- #
- # Any lines starting with a # are optional, but their use is encouraged
- # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
- #
- Pod::Spec.new do |s|
- s.name = 'FirebaseFirestore'
- s.version = '0.10.2'
- s.summary = 'Google Cloud Firestore for iOS'
- s.description = <<-DESC
- Google Cloud Firestore is a NoSQL document database built for automatic scaling, high performance, and ease of application development.
- DESC
- s.homepage = 'https://developers.google.com/'
- s.license = { :type => 'Apache', :file => 'LICENSE' }
- s.authors = 'Google, Inc.'
- s.source = { :git => 'https://github.com/TBD/Firestore.git', :tag => s.version.to_s }
- # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
- s.ios.deployment_target = '7.0'
- s.cocoapods_version = '>= 1.4.0'
- s.static_framework = true
- s.prefix_header_file = false
- s.source_files = [
- 'Firestore/Source/**/*',
- 'Firestore/Port/**/*',
- 'Firestore/Protos/nanopb/**/*.[hc]',
- 'Firestore/Protos/objc/**/*.[hm]',
- 'Firestore/core/include/**/*.{h,cc,mm}',
- 'Firestore/core/src/**/*.{h,cc,mm}',
- 'Firestore/third_party/Immutable/*.[mh]',
- ]
- s.requires_arc = [
- 'Firestore/Source/**/*',
- 'Firestore/core/src/**/*.mm',
- 'Firestore/third_party/Immutable/*.[mh]'
- ]
- s.exclude_files = [
- 'Firestore/Port/*test.cc',
- 'Firestore/third_party/Immutable/Tests/**',
- # Exclude alternate implementations for other platforms
- 'Firestore/core/src/firebase/firestore/util/assert_stdio.cc',
- 'Firestore/core/src/firebase/firestore/util/log_stdio.cc',
- 'Firestore/core/src/firebase/firestore/util/secure_random_openssl.cc'
- ]
- s.public_header_files = 'Firestore/Source/Public/*.h'
- s.ios.dependency 'FirebaseAnalytics', '~> 4.0'
- s.dependency 'FirebaseCore', '~> 4.0'
- s.dependency 'gRPC-ProtoRPC', '~> 1.0'
- s.dependency 'leveldb-library', '~> 1.18'
- s.dependency 'Protobuf', '~> 3.1'
- s.frameworks = 'MobileCoreServices'
- s.library = 'c++'
- s.pod_target_xcconfig = {
- 'GCC_PREPROCESSOR_DEFINITIONS' => 'GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 ',
- 'HEADER_SEARCH_PATHS' =>
- '"${PODS_TARGET_SRCROOT}" ' +
- '"${PODS_TARGET_SRCROOT}/Firestore/third_party/abseil-cpp" ' +
- '"${PODS_ROOT}/nanopb" ' +
- '"${PODS_TARGET_SRCROOT}/Firestore/Protos/nanopb"',
- 'OTHER_CFLAGS' => '-DFIRFirestore_VERSION=' + s.version.to_s + ' -DPB_FIELD_16BIT'
- }
- s.prepare_command = <<-CMD
- # Generate a version of the config.h header suitable for building with
- # CocoaPods.
- sed '/^#cmakedefine/ d' \
- Firestore/core/src/firebase/firestore/util/config.h.in > \
- Firestore/core/src/firebase/firestore/util/config.h
- CMD
- s.subspec 'abseil-cpp' do |ss|
- ss.preserve_path = [
- 'Firestore/third_party/abseil-cpp/absl'
- ]
- ss.source_files = [
- 'Firestore/third_party/abseil-cpp/**/*.cc'
- ]
- ss.exclude_files = [
- 'Firestore/third_party/abseil-cpp/**/*_test.cc',
- ]
- ss.library = 'c++'
- ss.compiler_flags = '$(inherited) ' + '-Wno-comma -Wno-range-loop-analysis'
- end
- end
|