forked from evermeer/EVReflection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
executable file
·44 lines (34 loc) · 859 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
workspace 'EVReflection'
# Our Libraries (just include everything for the demo)
def libraries
pod 'EVReflection/CloudKit', :path => "./"
pod 'EVReflection/MoyaRxSwiftXML', :path => "./"
pod 'EVReflection/MoyaReactiveSwiftXML', :path => "./"
end
target 'PerformanceTest' do
project 'PerformanceTest/PerformanceTest'
platform :ios, '8.0'
pod 'EVReflection/Core', :path => "./"
end
target 'UnitTestsiOS' do
project 'UnitTests/UnitTests'
platform :ios, '9.0'
libraries
end
target 'UnitTestsOSX' do
project 'UnitTests/UnitTests'
platform :osx, '10.10'
libraries
end
target 'UnitTestsTVOS' do
project 'UnitTests/UnitTests'
platform :tvos, '9.0'
libraries
end
target 'Demo' do
project 'Demo/Demo'
platform :ios, '8.0'
libraries
end