Skip to content

Commit 5aa0b03

Browse files
committed
Added new SPM
1 parent 737a4cf commit 5aa0b03

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Package.swift

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version:5.7
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "PassGuard",
8+
platforms: [.iOS(.v13)],
9+
products: [
10+
.library(
11+
name: "PassGuard",
12+
targets: ["PassGuard"]),
13+
],
14+
targets: [
15+
.target(
16+
name: "PassGuard",
17+
path: "PassGuard/PassGuard"
18+
)
19+
],
20+
swiftLanguageVersions: [.v5]
21+
)

0 commit comments

Comments
 (0)