Skip to content

Commit

Permalink
Merge pull request #1 from noppefoxwolf/feature/swiftpm
Browse files Browse the repository at this point in the history
Support swiftpm
  • Loading branch information
tattn authored Nov 25, 2019
2 parents 43d0374 + d7af904 commit d53e579
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"object": {
"pins": [
{
"package": "VRMKit",
"repositoryURL": "git@github.com:tattn/VRMKit.git",
"state": {
"branch": null,
"revision": "0198707831c84ff1904f9e501fa6ca36b43920b8",
"version": "0.3.1"
}
}
]
},
"version": 1
}
20 changes: 20 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// swift-tools-version:5.1
import PackageDescription

let package = Package(
name: "VTuberKit",
platforms: [.iOS(.v11)],
products: [
.library(name: "VTuberKit", targets: ["VTuberKit"])
],
dependencies: [
.package(url: "git@github.com:tattn/VRMKit.git", from: "0.3.1")
],
targets: [
.target(
name: "VTuberKit",
dependencies: ["VRMKit", "VRMSceneKit"],
path: "Sources"
)
]
)

0 comments on commit d53e579

Please sign in to comment.