-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·43 lines (36 loc) · 748 Bytes
/
Podfile
File metadata and controls
executable file
·43 lines (36 loc) · 748 Bytes
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
def import_pods
pod 'BigInt', '~> 3.1'
end
target 'EllipticSwift' do
platform :osx, '10.11'
use_frameworks!
# use_modular_headers!
import_pods
target 'EllipticSwiftTests' do
use_frameworks!
platform :osx, '10.11'
inherit! :search_paths
import_pods
# Pods for testing
end
target 'EllipticSwiftTests_Performance' do
use_frameworks!
platform :osx, '10.11'
inherit! :search_paths
import_pods
# Pods for testing
end
end
target 'EllipticSwift_iOS' do
platform :ios, '9.0'
use_frameworks!
# use_modular_headers!
import_pods
target 'EllipticSwift_iOS_Tests' do
use_frameworks!
platform :ios, '9.0'
inherit! :search_paths
import_pods
# Pods for testing
end
end