forked from core-plot/core-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CorePlot-latest.podspec
45 lines (37 loc) · 1.89 KB
/
CorePlot-latest.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Pod::Spec.new do |s|
s.name = 'CorePlot'
s.version = '99.99.99'
s.license = 'BSD'
s.summary = 'Cocoa plotting framework for macOS, iOS, and tvOS.'
s.homepage = 'https://github.com/core-plot'
s.social_media_url = 'https://twitter.com/CorePlot'
s.documentation_url = 'http://core-plot.github.io'
s.authors = { 'Drew McCormack' => '[email protected]',
'Brad Larson' => '[email protected]',
'Eric Skroch' => '[email protected]',
'Barry Wark' => '[email protected]' }
s.source = { :git => 'https://github.com/core-plot/core-plot.git' }
s.description = 'Core Plot is a plotting framework for macOS, iOS, and tvOS. It provides 2D visualization ' \
'of data, and is tightly integrated with Apple technologies like Core Animation, ' \
'Core Data, and Cocoa Bindings.'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.8'
s.tvos.deployment_target = '9.0'
s.ios.header_dir = 'ios'
s.osx.header_dir = 'osx'
s.tvos.header_dir = 'tvos'
s.source_files = 'framework/Source/*.{h,m}', 'framework/CocoaPods/*.h'
s.exclude_files = '**/*{TestCase,Tests}.{h,m}', '**/mainpage.h'
s.ios.source_files = 'framework/CorePlot-CocoaTouch.h', 'framework/iPhoneOnly/*.{h,m}'
s.tvos.source_files = 'framework/iPhoneOnly/*.{h,m}'
s.osx.source_files = 'framework/MacOnly/*.{h,m}'
s.private_header_files = '**/_*.h'
s.requires_arc = true
s.ios.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/Headers/Private/CorePlot/ios"' }
s.osx.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/Headers/Private/CorePlot/osx"' }
s.tvos.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/Headers/Private/CorePlot/tvos"' }
s.frameworks = 'QuartzCore'
s.ios.frameworks = 'UIKit', 'Foundation'
s.tvos.frameworks = 'UIKit', 'Foundation'
s.osx.frameworks = 'Cocoa'
end