forked from warrenm/GLTFKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GLTFSCN.podspec
24 lines (19 loc) · 911 Bytes
/
GLTFSCN.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
Pod::Spec.new do |s|
s.name = "GLTFSCN"
s.version = "1.0.0-rc3"
s.summary = "A framework for importing GL Transmission Format (glTF) models into SceneKit"
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/GLTFSCN/**/*.{h,m}"
s.public_header_files = "Framework/GLTFSCN/**/*.h"
s.dependency 'GLTF'
s.frameworks = 'SceneKit'
s.requires_arc = true
end