forked from urbanairship/ios-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
32 lines (29 loc) · 933 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
workspace 'Airship'
platform :ios, '10.0'
use_frameworks!
target 'AirshipKitTests' do
project 'AirshipKit/AirshipKit.xcodeproj'
pod 'OCMock', '~> 3.4'
pod 'XcodeEdit', '~> 1.1'
end
target 'TestShipTests' do
project 'TestShip/TestShip.xcodeproj'
pod 'KIF', :configurations => ['Debug']
end
post_install do |installer|
installer.pods_project.targets.each do |target|
# remove this when OCMock fixes documentation warning
if target.name == 'OCMock'
target.build_configurations.each do |config|
config.build_settings['CLANG_WARN_DOCUMENTATION_COMMENTS'] = 'NO'
end
end
# Disable bitcode in KIF by default because of issue below:
# https://github.com/kif-framework/KIF/issues/796
if target.name == 'KIF'
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
end