-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathEVGPUImage2.podspec
21 lines (19 loc) · 956 Bytes
/
EVGPUImage2.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'EVGPUImage2'
s.version = '0.2.0'
s.license = 'BSD'
s.summary = 'An open source iOS framework for GPU-based image and video processing.'
s.homepage = 'https://github.com/BradLarson/GPUImage2'
s.author = { 'Brad Larson' => '[email protected]' }
s.source = { :git => 'https://github.com/BradLarson/GPUImage2.git', :branch => "master" }
s.source_files = 'framework/Source/**/*.{swift}'
s.resources = 'framework/Source/Operations/Shaders/*.{fsh}'
s.requires_arc = true
s.xcconfig = { 'CLANG_MODULES_AUTOLINK' => 'YES',
'OTHER_SWIFT_FLAGS' => "$(inherited) -DGLES"}
s.ios.deployment_target = '8.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
s.swift_versions = ['4.0', '4.2', '5.0']
s.ios.exclude_files = 'framework/Source/Mac', 'framework/Source/Linux', 'framework/Source/Operations/Shaders/ConvertedShaders_GL.swift'
s.frameworks = ['OpenGLES', 'CoreMedia', 'QuartzCore', 'AVFoundation']
end