forked from imgly/pesdk-ios-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
imglyKit.podspec
24 lines (19 loc) · 1.31 KB
/
imglyKit.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 = "imglyKit"
s.version = "2.3.1"
s.license = { :type => 'Copyright', :file => 'LICENSE' }
s.summary = "Creates stunning images with a nice selection of premium filters."
s.homepage = "https://github.com/imgly/imgly-sdk-ios"
s.social_media_url = 'https://twitter.com/9elements'
s.authors = { '9elements GmbH' => '[email protected]' }
s.source = { :git => 'https://github.com/imgly/imgly-sdk-ios.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.ios.source_files = ['imglyKit/Backend/**/*.{h,m,swift}', 'imglyKit/Frontend/**/*.{h,m,swift}']
s.osx.source_files = ['imglyKit/Backend/**/*.{h,m,swift}']
s.ios.resources = ['imglyKit/Frontend/Assets.xcassets', 'imglyKit/Frontend/en.lproj/Localizable.strings', 'imglyKit/Backend/Filter Responses/*.png', 'imglyKit/Backend/Fonts/*']
s.osx.resources = ['imglyKit/Backend/Filter Responses/*.png', 'imglyKit/Backend/Fonts/*']
s.ios.frameworks = 'Accelerate', 'AVFoundation', 'CoreGraphics', 'CoreImage', 'CoreMotion', 'CoreText', 'Foundation', 'GLKit', 'MobileCoreServices', 'OpenGLES', 'Photos', 'UIKit'
s.osx.frameworks = 'Accelerate', 'AppKit', 'CoreGraphics', 'CoreText', 'Foundation', 'QuartzCore'
end