Created
October 3, 2016 14:32
-
-
Save pilot34/37f1d1c56953e5d5dd5651843385dd97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/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.ios.exclude_files = 'framework/Source/Mac', 'framework/Source/Linux', 'framework/Source/Operations/Shaders/ConvertedShaders_GL.swift' | |
s.frameworks = ['OpenGLES', 'CoreMedia', 'QuartzCore', 'AVFoundation'] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment