Skip to content

Commit

Permalink
CocoaPods support
Browse files Browse the repository at this point in the history
  • Loading branch information
tattn committed Feb 11, 2019
1 parent 7f98621 commit 1b8e0bc
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions .swift-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4.2
28 changes: 28 additions & 0 deletions VTuberKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Pod::Spec.new do |s|
s.name = 'VTuberKit'
s.version = '0.1.1'
s.summary = 'Avatar support library like a AvatarKit'

s.description = <<-DESC
Avatar support library like a AvatarKit
Show 3D models and track face
DESC

s.homepage = 'https://github.com/tattn/VTuberKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'git' => '[email protected]' }
s.source = { :git => 'https://github.com/tattn/VTuberKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tanakasan2525'

s.ios.deployment_target = '11.0'

s.source_files = 'Sources/**/*.{swift,h}'

s.public_header_files = 'Sources/**/*.h'
s.frameworks = 'Foundation'
s.frameworks = 'SceneKit'

s.dependency 'VRMKit', "~> 0.2.3"
s.dependency 'VRMSceneKit', "~> 0.2.3"
end

0 comments on commit 1b8e0bc

Please sign in to comment.