-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathGLTFSceneKit.podspec
More file actions
19 lines (19 loc) · 694 Bytes
/
GLTFSceneKit.podspec
File metadata and controls
19 lines (19 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "GLTFSceneKit"
s.version = "0.3.0"
s.summary = "glTF loader for SceneKit"
s.homepage = "https://github.com/magicien/GLTFSceneKit"
s.license = "MIT"
s.author = "magicien"
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.source = { :git => "https://github.com/magicien/GLTFSceneKit.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
s.resources = "Sources/**/*.shader"
s.requires_arc = true
s.swift_version = "4.0"
s.pod_target_xcconfig = {
"SWIFT_VERSION" => "4.0",
"SWIFT_ACTIVE_COMPILATION_CONDITIONS" => "SEEMS_TO_HAVE_VALIDATE_VERTEX_ATTRIBUTE_BUG SEEMS_TO_HAVE_PNG_LOADING_BUG"
}
end