-
Notifications
You must be signed in to change notification settings - Fork 39
/
imglyKit2.podspec
executable file
·27 lines (22 loc) · 1.46 KB
/
imglyKit2.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
Pod::Spec.new do |s|
s.name = "imglyKit2"
s.version = ENV["LIB_VERSION"] || "1.0.0"
s.license = { :type => 'Copyright', :file => 'LICENSE' }
s.summary = "Creates stunning images with a nice selection of premium filters."
s.homepage = "https://github.com/ky1vstar/imgly-sdk-ios-2"
s.social_media_url = 'https://twitter.com/9elements'
s.authors = { '9elements GmbH' => '[email protected]', 'ky1vstar' => '[email protected]' }
s.source = { :git => 'https://github.com/ky1vstar/imgly-sdk-ios-2.git', :tag => s.version.to_s }
s.module_name = 'imglyKit'
s.header_dir = 'imglyKit'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.swift_version = '5.0'
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