aboutsummaryrefslogtreecommitdiffhomepage
path: root/FirebaseFirestore.podspec
diff options
context:
space:
mode:
authorGravatar Marek Gilbert <mcg@google.com>2018-06-15 15:07:08 -0700
committerGravatar Marek Gilbert <mcg@google.com>2018-06-15 16:07:58 -0700
commit0b77f5a68fb983ff9a3f6232c6025282ed8a89e8 (patch)
tree56ea0b145faea964b7da3332f7e897ebe70f04c4 /FirebaseFirestore.podspec
parent892288d5236e20ac31b68b7d4f508cb59b3e77a2 (diff)
Move -D flags into GCC_PREPROCESSOR_DEFINITIONS
Diffstat (limited to 'FirebaseFirestore.podspec')
-rw-r--r--FirebaseFirestore.podspec14
1 files changed, 7 insertions, 7 deletions
diff --git a/FirebaseFirestore.podspec b/FirebaseFirestore.podspec
index f97cfe7..892b136 100644
--- a/FirebaseFirestore.podspec
+++ b/FirebaseFirestore.podspec
@@ -56,18 +56,18 @@ 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 ' +
- 'FIRFirestore_VERSION=' + s.version.to_s + ' PB_FIELD_16BIT',
+ 'GCC_PREPROCESSOR_DEFINITIONS' =>
+ "FIRFirestore_VERSION=#{s.version} " +
+ 'GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 ' +
+ # The nanopb pod sets these defs, so we must too. (We *do* require 16bit
+ # (or larger) fields, so we'd have to set at least PB_FIELD_16BIT
+ # anyways.)
+ 'PB_FIELD_16BIT=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1',
'HEADER_SEARCH_PATHS' =>
'"${PODS_TARGET_SRCROOT}" ' +
'"${PODS_TARGET_SRCROOT}/Firestore/third_party/abseil-cpp" ' +
'"${PODS_ROOT}/nanopb" ' +
'"${PODS_TARGET_SRCROOT}/Firestore/Protos/nanopb"',
-
- # The nanopb pod (which is pulled in indirectly) sets these defs, so we
- # must too. (We *do* require 16bit (or larger) fields, so we'd have to set
- # at least PB_FIELD_16BIT anyways.)
- 'OTHER_CFLAGS' => '-DPB_FIELD_32BIT -DPB_NO_PACKED_STRUCTS=1'
}
s.prepare_command = <<-CMD