-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPodfile
More file actions
45 lines (40 loc) · 1.01 KB
/
Podfile
File metadata and controls
45 lines (40 loc) · 1.01 KB
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
workspace 'LevelSearch'
xcodeproj 'Example/LevelSearchExample.xcodeproj'
xcodeproj 'Tests/LevelSearchTests.xcodeproj'
xcodeproj 'Benchmarking/LevelSearchBenchmarking.xcodeproj'
inhibit_all_warnings!
target :LevelSearchExample do
platform :ios, '7.0'
pod 'Objective-LevelDB'
pod 'MessagePack'
xcodeproj 'Example/LevelSearchExample.xcodeproj'
end
target :iostests do
platform :ios, '7.0'
pod 'Objective-LevelDB'
pod 'MagicalRecord'
pod 'XCAsyncTestCase'
pod 'MessagePack'
xcodeproj 'Tests/LevelSearchTests.xcodeproj'
end
target :osxtests do
platform :osx, '10.9'
pod 'Objective-LevelDB'
pod 'MagicalRecord'
pod 'XCAsyncTestCase'
pod 'MessagePack'
xcodeproj 'Tests/LevelSearchTests.xcodeproj'
end
target :benchmarking do
platform :osx, '10.9'
pod 'RestKit'
pod 'RestKit/Search'
pod 'MagicalRecord'
pod 'FMDB'
pod 'sqlite3'
pod 'sqlite3/fts'
pod 'Objective-LevelDB'
pod 'CocoaLumberjack'
pod 'MessagePack'
xcodeproj 'Benchmarking/LevelSearchBenchmarking.xcodeproj'
end