aboutsummaryrefslogtreecommitdiffhomepage
path: root/GoogleUtilities/Example/Podfile
diff options
context:
space:
mode:
Diffstat (limited to 'GoogleUtilities/Example/Podfile')
-rw-r--r--GoogleUtilities/Example/Podfile34
1 files changed, 34 insertions, 0 deletions
diff --git a/GoogleUtilities/Example/Podfile b/GoogleUtilities/Example/Podfile
new file mode 100644
index 0000000..814e93a
--- /dev/null
+++ b/GoogleUtilities/Example/Podfile
@@ -0,0 +1,34 @@
+use_frameworks!
+
+target 'Example_iOS' do
+ platform :ios, '8.0'
+
+ pod 'GoogleUtilities', :path => '../../'
+
+ target 'Tests_iOS' do
+ inherit! :search_paths
+ pod 'OCMock'
+ end
+end
+
+target 'Example_macOS' do
+ platform :osx, '10.10'
+
+ pod 'GoogleUtilities', :path => '../../'
+
+ target 'Tests_macOS' do
+ inherit! :search_paths
+ pod 'OCMock'
+ end
+end
+
+target 'Example_tvOS' do
+ platform :tvos, '10.0'
+
+ pod 'GoogleUtilities', :path => '../../'
+
+ target 'Tests_tvOS' do
+ inherit! :search_paths
+ pod 'OCMock'
+ end
+end