forked from BradLarson/GPUImage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GPUImage.podspec
28 lines (25 loc) · 1.25 KB
/
GPUImage.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
25
26
27
28
Pod::Spec.new do |s|
s.name = 'GPUImage'
s.version = '0.1.4'
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' => '[email protected]' }
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