-
Notifications
You must be signed in to change notification settings - Fork 43
/
Kanvas.podspec
24 lines (23 loc) · 1.01 KB
/
Kanvas.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
# frozen_string_literal: true
Pod::Spec.new do |spec|
spec.name = 'Kanvas'
spec.version = '1.5.2'
spec.summary = 'A custom camera built for iOS.'
spec.homepage = 'https://github.com/tumblr/kanvas-ios'
spec.license = 'MPLv2'
spec.source = { git: 'https://github.com/tumblr/kanvas-ios.git',
tag: spec.version.to_s }
spec.authors = { 'Jimmy Schementi' => '[email protected]',
'Tony Cheng' => '[email protected]' }
spec.platform = :ios, '13.0'
spec.swift_version = '4.2'
spec.requires_arc = true
spec.frameworks = 'Foundation', 'GLKit', 'OpenGLES', 'UIKit'
spec.source_files = 'Classes/**/*.{h,m,swift,vsh,glsl}'
spec.resource_bundles = {
'Kanvas' => ['Classes/Resources/*']
}
spec.dependency 'CropViewController'
spec.user_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'GLES_SILENCE_DEPRECATION=1' }
spec.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'GLES_SILENCE_DEPRECATION=1' }
end