forked from muhku/FreeStreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFreeStreamer.podspec
17 lines (17 loc) · 918 Bytes
/
FreeStreamer.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'FreeStreamer'
s.version = '2.1.3_2'
s.license = 'BSD'
s.summary = 'A low-memory footprint streaming audio client for iOS and OS X.'
s.homepage = 'http://freestreamer.io'
s.author = { 'Matias Muhonen' => '[email protected]' }
s.source = { :git => 'https://github.com/muhku/FreeStreamer.git', :tag => s.version.to_s }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.7'
s.source_files = 'Common/*.{h,m,mm}', 'astreamer/*.{h,cpp}'
s.ios.frameworks = 'CFNetwork', 'AudioToolbox', 'AVFoundation', 'MediaPlayer'
s.osx.frameworks = 'CFNetwork', 'AudioToolbox', 'AVFoundation'
s.libraries = 'xml2', 'stdc++'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.requires_arc = true
end