forked from BradLarson/GPUImage2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
LXGPUImage2.podspec
23 lines (20 loc) · 1.06 KB
/
LXGPUImage2.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'LXGPUImage2'
s.module_name = 'LXGPUImage2'
s.version = '6.3.4'
s.license = 'BSD'
s.summary = 'An open source iOS framework for GPU-based image and video processing.'
s.homepage = 'https://github.com/thanhminhkma/GPUImage2'
s.author = { 'Brad Larson' => '[email protected]' }
s.source = { :git => 'https://github.com/thanhminhkma/GPUImage2.git', :tag => s.version }
s.source_files = 'framework/Source/**/*.{swift,h,m}'
s.resources = ['framework/Source/Operations/Shaders/*.{fsh}']
s.requires_arc = true
s.xcconfig = { 'CLANG_MODULES_AUTOLINK' => 'YES',
'OTHER_SWIFT_FLAGS' => "$(inherited) -DGLES",
'VALIDATE_WORKSPACE_SKIPPED_SDK_FRAMEWORKS' => "OpenGLES" }
s.ios.deployment_target = '10.0'
s.ios.exclude_files = 'framework/Source/Mac', 'framework/Source/Linux', 'framework/Source/Operations/Shaders/ConvertedShaders_GL.swift'
s.frameworks = ['OpenGLES', 'CoreMedia', 'QuartzCore', 'AVFoundation']
s.swift_version = '4.0'
end