-
Notifications
You must be signed in to change notification settings - Fork 7
/
Podfile
63 lines (53 loc) · 1.17 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
def product_pods
pod 'Merhaba', :path => '.'
end
workspace 'Merhaba.xcworkspace'
project 'Merhaba.xcodeproj'
target 'Merhaba-iOS' do
platform :ios, '9.0'
project 'Merhaba.xcodeproj'
use_frameworks!
target 'Merhaba-iOSTests' do
inherit! :search_paths
pod 'OCMock', '~> 3.4'
end
end
target 'Merhaba-macOS' do
platform :osx, '10.9'
project 'Merhaba.xcodeproj'
use_frameworks!
target 'Merhaba-macOSTests' do
inherit! :search_paths
pod 'OCMock', '~> 3.4'
end
end
target 'Merhaba-tvOS' do
platform :tvos, '9.0'
project 'Merhaba.xcodeproj'
use_frameworks!
target 'Merhaba-tvOSTests' do
inherit! :search_paths
pod 'OCMock', '~> 3.4'
end
end
target 'iOS Sample' do
platform :ios, '9.0'
project 'Sample/iOS Sample/iOS Sample.xcodeproj'
use_frameworks!
inherit! :search_paths
product_pods
end
target 'macOS Sample' do
platform :osx, '10.9'
project 'Sample/macOS Sample/macOS Sample.xcodeproj'
use_frameworks!
inherit! :search_paths
product_pods
end
target 'tvOS Sample' do
platform :tvos, '9.0'
project 'Sample/tvOS Sample/tvOS Sample.xcodeproj'
use_frameworks!
inherit! :search_paths
product_pods
end