forked from tattn/VRMKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVRMKit.podspec
More file actions
25 lines (19 loc) · 817 Bytes
/
VRMKit.podspec
File metadata and controls
25 lines (19 loc) · 817 Bytes
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 = 'VRMKit'
s.version = '0.4.4'
s.summary = 'VRM loader and VRM renderer'
s.description = <<-DESC
VRM loader and VRM renderer.
VRMKit can read VRM metadata and show the 3D models.
DESC
s.homepage = 'https://github.com/tattn/VRMKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'git' => 'tattndev@gmail.com' }
s.source = { :git => 'https://github.com/tattn/VRMKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tanakasan2525'
s.swift_versions = ['5.1']
s.ios.deployment_target = '12.0'
s.source_files = 'Sources/VRMKit/**/*.{swift,h}'
s.public_header_files = 'Sources/VRMKit/**/*.h'
s.frameworks = 'Foundation'
end