forked from parse-community/Parse-SDK-iOS-OSX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParse-OSX.podspec
41 lines (35 loc) · 1.57 KB
/
Parse-OSX.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
Pod::Spec.new do |s|
s.name = 'Parse-OSX'
s.version = '1.8.0'
s.license = { :type => 'Commercial', :text => "See https://www.parse.com/about/terms" }
s.homepage = 'https://www.parse.com/'
s.summary = 'Parse is a complete technology stack to power your app\'s backend.'
s.documentation_url = 'https://parse.com/docs/ios_guide'
s.authors = 'Parse'
s.source = { :git => "https://github.com/ParsePlatform/Parse-SDK-iOS-OSX.git", :tag => s.version.to_s }
s.platform = :osx
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.header_dir = 'ParseOSX'
s.module_name = 'ParseOSX'
s.source_files = 'Parse/*.{h,m}',
'Parse/OSX.{h,m}',
'Parse/Internal/**/*.{h,m}'
s.public_header_files = 'Parse/*.h', 'Parse/OSX/*.h'
s.resources = 'Parse/Resources/Localizable.strings'
s.exclude_files = 'Parse/PFNetworkActivityIndicatorManager.{h,m}',
'Parse/PFProduct.{h,m}',
'Parse/PFPurchase.{h,m}',
'Parse/Internal/PFAlertView.{h,m}',
'Parse/Internal/Product/**/*.{h,m}',
'Parse/Internal/Purchase/**/*.{h,m}'
s.frameworks = 'ApplicationServices',
'CFNetwork',
'CoreGraphics',
'CoreLocation',
'QuartzCore',
'Security',
'SystemConfiguration'
s.libraries = 'z', 'sqlite3'
s.dependency 'Bolts/Tasks', '>= 1.2.0'
end