-
Notifications
You must be signed in to change notification settings - Fork 30
/
GLTFMTL.podspec
25 lines (20 loc) · 988 Bytes
/
GLTFMTL.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
Pod::Spec.new do |s|
s.name = "GLTFMTL"
s.version = "1.0.0-rc3"
s.summary = "A framework for rendering GL Transmission Format (glTF) models with Metal"
s.homepage = "https://github.com/warrenm/GLTFKit"
s.screenshots = "https://github.com/warrenm/GLTFKit/raw/master/Images/screenshot-polly.jpg"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Warren Moore" => "[email protected]" }
s.social_media_url = "http://twitter.com/warrenm"
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "11.0"
s.source = { :git => "https://github.com/warrenm/GLTFKit.git", :tag => "#{s.version}" }
s.source_files = "Framework/GLTFMTL/**/*.{h,m}"
s.public_header_files = "Framework/GLTFMTL/**/*.h"
s.resource = "GLTFViewer/Resources/Shaders/pbr.metal"
s.dependency 'GLTF'
s.frameworks = 'Metal', 'MetalKit'
s.requires_arc = true
end