-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
PerformanceBezier.podspec
24 lines (18 loc) · 1.08 KB
/
PerformanceBezier.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
Pod::Spec.new do |s|
s.name = "PerformanceBezier"
s.version = "1.3.1"
s.summary = "A small library to dramatically speed up common operations on UIBezierPath, and also bring its functionality closer to NSBezierPath."
s.author = {
'Adam Wulf' => 'adam.wulf@gmail.com',
}
s.homepage = "https://github.com/adamwulf/PerformanceBezier"
s.license = {:type => 'CC BY', :file => 'LICENSE' }
s.source = { :git => "https://github.com/adamwulf/PerformanceBezier.git", :tag => s.version}
s.source_files = ['PerformanceBezier/PerformanceBezier.h', 'PerformanceBezier/UIBezierPath*.{h,m}', 'PerformanceBezier/JR*.{h,m}']
s.private_header_files = ['PerformanceBezier/*_Private.h', 'PerformanceBezier/JRSwizzle.h']
s.public_header_files = 'PerformanceBezier/*.h'
s.platform = :ios
s.ios.deployment_target = "10.0"
s.framework = 'Foundation', 'UIKit'
s.xcconfig = { "DEFINES_MODULE" => "YES", 'OTHER_LDFLAGS' => '-ObjC++ -lstdc++', "CLANG_CXX_LANGUAGE_STANDARD" => "gnu++0x", "CLANG_CXX_LIBRARY" => "libc++" }
end