-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathEventSource.podspec
More file actions
16 lines (16 loc) · 848 Bytes
/
EventSource.podspec
File metadata and controls
16 lines (16 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "EventSource"
s.version = "1.0.4"
s.summary = "HTML5 Server-Sent Events in your Cocoa app."
s.homepage = "http://github.com/neilco/EventSource"
s.license = 'MIT (see LICENSE.txt)'
s.author = { "Neil Cowburn" => "git@neilcowburn.com" }
s.source = { :git => "https://github.com/neilco/EventSource.git", :tag => "1.0.4" }
s.source_files = 'EventSource', 'EventSource/EventSource.{h,m}'
s.ios.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
s.osx.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
end