forked from ppaulojr/XLiOSKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXLiOSKit.podspec
More file actions
executable file
·35 lines (30 loc) · 1 KB
/
XLiOSKit.podspec
File metadata and controls
executable file
·35 lines (30 loc) · 1 KB
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
Pod::Spec.new do |s|
s.name = "XLiOSKit"
s.version = "0.8.0"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Copyright 2014 Xmartlabs. All rights reserved.
LICENSE
}
s.homepage = "http://xmartlabs.com"
s.summary = "Xmarltabs iOS development kit."
s.description = <<-DESC
Xmarltabs iOS development kit.
DESC
s.author = { 'Martin Barreto' => 'martin@xmartlabs.com', 'Miguel Revetria' => 'miguel@xmartlabs.com' }
s.platform = :ios
s.subspec 'arc' do |sp|
sp.source_files = 'XLiOSKit/**/*.{m,h}'
sp.requires_arc = true
end
s.subspec 'no-arc' do |sp|
sp.source_files = 'XLiOSKit_noARC/**/*.{h,m}'
sp.requires_arc = false
sp.compiler_flags = '-fno-objc-arc'
end
s.header_dir = 'XLKit'
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.ios.frameworks = 'CoreFoundation', 'Foundation', 'MobileCoreServices', 'Security', 'SystemConfiguration', 'AssetsLibrary'
end