aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Podfile
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2017-11-09 09:16:20 -0800
committerGravatar GitHub <noreply@github.com>2017-11-09 09:16:20 -0800
commit86f429b2f0061a9f16c42f83841d36813892232b (patch)
treecaad0321b83c1c0ca3979acb22529e73a2619e8a /Firestore/Example/Podfile
parent9044d2ce212d3fffe6bfb3793fdb5c58cb18f49b (diff)
Make FSTIntegrationTestCase Objective-C++ (#439)
* Make all FIRLogger functions extern "C" * Make FSTIntegrationTestCase Objective-C++ Keep external interface to FSTIntegrationTestCase Objective-C * Add explicit dependency on Firebase/Community/Core from Tests This fixes a linkage error on a missing _FIRSetLoggerLevel symbol
Diffstat (limited to 'Firestore/Example/Podfile')
-rw-r--r--Firestore/Example/Podfile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Firestore/Example/Podfile b/Firestore/Example/Podfile
index c79495d..c5cf06a 100644
--- a/Firestore/Example/Podfile
+++ b/Firestore/Example/Podfile
@@ -7,13 +7,19 @@ target 'Firestore_Example' do
target 'Firestore_Tests' do
inherit! :search_paths
+
+ pod 'FirebaseCommunity/Core', :path => '../../'
+ pod 'leveldb-library'
+
pod 'OCMock'
pod 'GoogleTest', :podspec => 'Tests/GoogleTest/GoogleTest.podspec'
- pod 'leveldb-library'
end
target 'Firestore_IntegrationTests' do
inherit! :search_paths
+
+ pod 'FirebaseCommunity/Core', :path => '../../'
+
pod 'OCMock'
end
end