aboutsummaryrefslogtreecommitdiffhomepage
path: root/GoogleUtilities/Example/Podfile
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-07-12 12:03:50 -0700
committerGravatar GitHub <noreply@github.com>2018-07-12 12:03:50 -0700
commitc586dc8747882770973b6488c9f5f9e6e3f08d6c (patch)
tree511cda1bd0c67b94ab7bbb8ba22201fecf89909b /GoogleUtilities/Example/Podfile
parent49f2493e14cd68ecc0e08ad2d9fc75739e419a3b (diff)
Separate Xcode project and tests for GoogleUtilities (#1521)
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