forked from BradLarson/GPUImage2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGPUImage2.podspec
20 lines (16 loc) · 930 Bytes
/
GPUImage2.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'GPUImage2'
s.version = '0.1.0'
s.license = 'BSD'
s.summary = 'An open source iOS framework for GPU-based image and video processing.'
s.homepage = 'https://github.com/liuqiaohong0515/GPUImage2'
s.author = { 'Brad Larson' => '[email protected]' }
s.source = { :git => 'https://github.com/liuqiaohong0515/GPUImage2', :commit => 'ee182aa37c5162ce40179165f889322e5a43b775' }
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 = '11.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