Merge pull request #95 from bellebethcooper/master

Updated Swift tools version and added missing requirements
This commit is contained in:
Max Sokolov 2019-09-19 16:45:06 -04:00 committed by GitHub
commit 45aee4522d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 2 deletions

View File

@ -1,5 +1,20 @@
// swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription import PackageDescription
let package = Package( let package = Package(
name: "TableKit" name: "TableKit",
products: [
.library(
name: "TableKit",
targets: ["TableKit"]),
],
targets: [
.target(
name: "TableKit",
path: "Sources")
]
) )