forked from futuun/react-native-webgl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-native-webgl.podspec
More file actions
20 lines (18 loc) · 838 Bytes
/
react-native-webgl.podspec
File metadata and controls
20 lines (18 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = package['name']
s.version = package['version']
s.summary = package['description']
s.homepage = 'https://github.com/react-community/react-native-webgl'
s.license = package['license']
s.author = package['author']
s.source = { :git => 'https://github.com/react-community/react-native-webgl.git', :tag => "v#{package['version']}" }
s.requires_arc = true
s.platform = :ios, '10.0'
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
s.source_files = 'ios/*.{h,m}','cpp/*.{h,c,cpp,mm}'
s.framework = 'OpenGLES'
s.dependency 'GPUImage'
s.dependency 'React'
end