Added Package.swift to framework project

This commit is contained in:
Mathias Köhnke 2016-09-19 21:05:10 +02:00
parent 489ef89673
commit 00e9529a77
3 changed files with 15 additions and 0 deletions

5
.gitignore vendored
View File

@ -54,3 +54,8 @@ Cartfile.resolved
fastlane/report.xml
fastlane/screenshots
# SPM
.build/
Packages/

1
.swift-version Normal file
View File

@ -0,0 +1 @@
3.0

9
Package.swift Normal file
View File

@ -0,0 +1,9 @@
import PackageDescription
let package = Package(
name: "WKZombie",
targets: [],
dependencies: [
.Package(url: "https://github.com/mkoehnke/hpple.git", Version(0,2,2))
]
)