forked from BradLarson/GPUImage
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGPUImage.podspec
More file actions
Latest commit
28 lines (25 loc) · 1.25 KB
/
Copy pathGPUImage.podspec
File metadata and controls
28 lines (25 loc) · 1.25 KB
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
28
Pod::Spec.newdo |s|
s.name='GPUImage'
s.version='0.1.7'
s.license='BSD'
s.summary='An open source iOS framework for GPU-based image and video processing.'
s.homepage='https://github.com/BradLarson/GPUImage'
s.author={'Brad Larson'=>'contact@sunsetlakesoftware.com'}
s.source={:git=>'https://github.com/BradLarson/GPUImage.git',:tag=>"#{s.version}"}
s.source_files='framework/Source/**/*.{h,m}'
s.resources='framework/Resources/*.png'
s.requires_arc=true
s.xcconfig={'CLANG_MODULES_AUTOLINK'=>'YES'}
s.ios.deployment_target='5.0'
s.ios.exclude_files='framework/Source/Mac'
s.ios.frameworks=['OpenGLES','CoreMedia','QuartzCore','AVFoundation']
s.osx.deployment_target='10.6'
s.osx.exclude_files='framework/Source/iOS',
'framework/Source/GPUImageFilterPipeline.*',
'framework/Source/GPUImageMovie.*',
'framework/Source/GPUImageMovieComposition.*',
'framework/Source/GPUImageVideoCamera.*',
'framework/Source/GPUImageStillCamera.*',
'framework/Source/GPUImageUIElement.*'
s.osx.xcconfig={'GCC_WARN_ABOUT_RETURN_TYPE'=>'YES'}
end