Make swift pm project

This commit is contained in:
Aleksey Zgurskiy
2020-08-07 16:47:58 +03:00
parent 774a58c5fb
commit 54446ff314
14 changed files with 460 additions and 526 deletions

16
Package.swift Normal file
View File

@@ -0,0 +1,16 @@
// swift-tools-version:5.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "KeychainKit",
platforms: [.iOS(.v8)],
products: [
.library(name: "KeychainKit", targets: ["KeychainKit"]),
],
dependencies: [],
targets: [
.target(name: "KeychainKit", dependencies: [])
]
)