-
Notifications
You must be signed in to change notification settings - Fork 23
/
XAspect.podspec
executable file
·34 lines (27 loc) · 1 KB
/
XAspect.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
Pod::Spec.new do |s|
s.name = 'XAspect'
s.version = '1.0.5'
s.license = 'MIT'
s.summary = 'Making code maintainable and reusable with aspect-oriented programming for Objective-C'
s.homepage = 'https://github.com/xareelee/XAspect'
s.authors = { 'Kang-Yu Xaree Lee' => '[email protected]' }
s.source = { :git => "https://github.com/xareelee/XAspect.git", :tag => s.version.to_s, :submodules => true }
s.requires_arc = false
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.library = 'c++'
s.pod_target_xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
s.public_header_files = 'XAspect/XAspect.h'
s.source_files = 'XAspect/XAspect.h'
s.default_subspecs = 'Core', 'Macros'
s.subspec 'Macros' do |ss|
ss.source_files = 'XAspect/Macros/*.h'
end
s.subspec 'Core' do |ss|
ss.source_files = 'XAspect/Core/*.{h,m,mm,c,cpp}'
ss.dependency 'XAspect/Macros'
end
end