aboutsummaryrefslogtreecommitdiffhomepage
path: root/FirebaseFirestore.podspec
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2017-12-11 19:50:14 -0800
committerGravatar GitHub <noreply@github.com>2017-12-11 19:50:14 -0800
commita4d2614d73ccea3bac9dbade6b13326cbfc8cabc (patch)
tree5b7572b0bd99560bd808925bd617ff2d3354e7ca /FirebaseFirestore.podspec
parent43774fec33adda895609ccd61d7c00e71d2396bb (diff)
Remove prerelease abseil code (#558)
* Add abseil bits to the iOS build * Migrate from prerelease to published abseil bits in ordered_code * Remove prerelease abseil code
Diffstat (limited to 'FirebaseFirestore.podspec')
-rw-r--r--FirebaseFirestore.podspec12
1 files changed, 7 insertions, 5 deletions
diff --git a/FirebaseFirestore.podspec b/FirebaseFirestore.podspec
index ed7346c..eabac1e 100644
--- a/FirebaseFirestore.podspec
+++ b/FirebaseFirestore.podspec
@@ -33,7 +33,8 @@ Google Cloud Firestore is a NoSQL document database built for automatic scaling,
'Firestore/Port/**/*',
'Firestore/Protos/objc/**/*.[hm]',
'Firestore/core/src/**/*.{h,cc}',
- 'Firestore/third_party/Immutable/*.[mh]'
+ 'Firestore/third_party/Immutable/*.[mh]',
+ 'Firestore/third_party/abseil-cpp/absl/*.{h,cc}'
]
s.requires_arc = [
'Firestore/Source/**/*',
@@ -54,9 +55,10 @@ Google Cloud Firestore is a NoSQL document database built for automatic scaling,
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}"',
- 'OTHER_CFLAGS' => '-DFIRFirestore_VERSION=' + s.version.to_s
+ 'GCC_PREPROCESSOR_DEFINITIONS' => 'GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 ',
+ 'HEADER_SEARCH_PATHS' =>
+ '"${PODS_TARGET_SRCROOT}" ' +
+ '"${PODS_TARGET_SRCROOT}/Firestore/third_party/abseil-cpp"',
+ 'OTHER_CFLAGS' => '-DFIRFirestore_VERSION=' + s.version.to_s
}
end