-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLamKit.podspec
More file actions
28 lines (24 loc) · 902 Bytes
/
LamKit.podspec
File metadata and controls
28 lines (24 loc) · 902 Bytes
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
Pod::Spec.new do |s|
s.name = "LamKit"
s.version = "0.0.1"
s.summary = "L'Atelier du mobile's internal iOS development framework."
s.license = {
:type => 'MIT',
:text => <<-LICENSE
Copyright (C) 2014 L'Atelier du mobile
LICENSE
}
s.homepage = "http://www.atelierdumobile.com"
s.author = { "Nicolas Lauquin" => "nicolas@atelierdumobile.com", "Mathieu Godart" => "mathieu@atelierdumobile.com" }
s.platform = :ios
s.ios.deployment_target = "6.0"
s.source = { :git => 'https://github.com/atelierdumobile/LamKit-iOS.git' }#, :tag => 0.0.1
s.source_files = '*.{h,m}'
s.requires_arc = true
s.frameworks = 'CoreGraphics', 'QuartzCore'
s.dependency 'NSLogger'
s.dependency 'LOG_EXPR'
s.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '${inherited} LAM_BUILD_USERNAME="${USER}"'
}
end