Skip to content

Commit

Permalink
Fix CocoaPods build
Browse files Browse the repository at this point in the history
  • Loading branch information
berg committed Apr 19, 2013
1 parent 45d47ea commit e689eac
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion QuickDialog.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ Pod::Spec.new do |s|
'having to directly deal with UITableViews, delegates and data sources. Fast ' \
'and efficient, you can create forms with multiple text fields, or with ' \
'thousands of items with no sweat!'
s.source_files = 'quickdialog', '*.{h,m}'

s.source_files = 'quickdialog', '*.{h,m}'
s.requires_arc = true
s.frameworks = 'MapKit', 'CoreLocation'

s.prefix_header_contents = <<-EOS
#ifdef __OBJC__
#import "QuickDialog.h"
#endif
EOS
end

0 comments on commit e689eac

Please sign in to comment.