Skip to content

Commit 3eff764

Browse files
committed
Create Package.swift
1 parent 166403e commit 3eff764

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Package.swift

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// swift-tools-version:5.1
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "PasscodeKit",
6+
platforms: [
7+
.iOS(.v13),
8+
],
9+
products: [
10+
.library(
11+
name: "PasscodeKit",
12+
type: .static,
13+
targets: ["PasscodeKit"]),
14+
],
15+
targets: [
16+
.target(
17+
name: "PasscodeKit",
18+
dependencies: [],
19+
path: "./PasscodeKit",
20+
sources: ["Sources"]
21+
),
22+
]
23+
)

0 commit comments

Comments
 (0)