Skip to content

Commit

Permalink
Updated podspec to require ARC and security framework
Browse files Browse the repository at this point in the history
  • Loading branch information
jdewind committed Apr 16, 2012
1 parent 2ab54b6 commit 711760b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CocoaAsyncSocket/0.0.1/CocoaAsyncSocket.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ Pod::Spec.new do |s|

s.source_files = '{GCD,RunLoop}/*.{h,m}'
s.clean_paths = 'Vendor', 'GCD/Xcode', 'RunLoop/Xcode'
s.requires_arc = true

if config.ios?
s.frameworks = 'CFNetwork'
s.frameworks = ['CFNetwork', 'Security']
else
s.frameworks = 'CoreServices'
s.frameworks = ['CoreServices', 'Security']
end
end

0 comments on commit 711760b

Please sign in to comment.