forked from pubnub/objective-c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
65 lines (57 loc) · 1.79 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
64
65
source 'https://github.com/CocoaPods/Specs.git'
workspace 'PubNub.xcworkspace'
install! 'cocoapods', :lock_pod_sources => false
use_frameworks!
target 'PubNub_Example' do
platform :ios, '8.0'
project 'Example/PubNub Example'
pod "PubNub", :path => "."
end
target 'PubNub Mac Example' do
platform :osx, '10.9'
project 'Example/PubNub Example'
pod "PubNub", :path => "."
end
target 'iOS ObjC Tests' do
platform :ios, "8.0"
project 'Tests/PubNub Tests'
pod "BeKindRewind"
pod "PubNub", :path => "."
end
# target 'iOS Swift Tests' do
# platform :ios, "8.0"
# project 'Tests/PubNub Tests'
# pod "BeKindRewind"
# pod "PubNub", :path => "."
# end
target 'OSX ObjC Tests' do
platform :osx, '10.9'
project 'Tests/PubNub Tests'
pod "BeKindRewind"
pod "PubNub", :path => "."
end
target 'tvOS ObjC Tests' do
platform :tvos, '9.0'
project 'Tests/PubNub Tests'
pod "BeKindRewind"
pod "PubNub", :path => "."
end
# Making all interfaces visible for all targets on explicit import
pre_install do |installer_representation|
installer_representation.aggregate_targets.each do |aggregate_target|
aggregate_target.spec_consumers.each do |spec_consumer|
unless spec_consumer.private_header_files.empty?
spec_consumer.spec.attributes_hash['private_header_files'].clear
end
end
end
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['GCC_INSTRUMENT_PROGRAM_FLOW_ARCS'] = 'YES'
config.build_settings['GCC_GENERATE_TEST_COVERAGE_FILES'] = 'YES'
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = 'YES' unless target.name =~ /PubNub/
end
end
end