Skip to content

Commit

Permalink
Merge pull request #36 from SevInf/master
Browse files Browse the repository at this point in the history
Add RestKit frameworks for OSX
  • Loading branch information
alloy committed Jan 23, 2012
2 parents 3a5a075 + c0ed899 commit f77b16a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion RestKit/0.9.3/RestKit.podspec
Expand Up @@ -20,7 +20,11 @@ Pod::Spec.new do |s|
ns.description = 'The network layer provides a request/response abstraction on top of NSURLConnection.'
ns.dependency 'LibComponentLogging-NSLog'
ns.source_files = 'Code/RestKit.h', 'Code/{Network,Support}/*.{h,m}'
ns.frameworks = 'CFNetwork', 'Security', 'MobileCoreServices', 'SystemConfiguration'
if config.ios?
ns.frameworks = 'CFNetwork', 'Security', 'MobileCoreServices', 'SystemConfiguration'
else
ns.frameworks = 'CoreServices', 'Security', 'SystemConfiguration'
end
end

# Like before, this creates a new spec with the name: RestKit/ObjectMapping and is a part of RestKit
Expand Down

0 comments on commit f77b16a

Please sign in to comment.