Skip to content

Commit d4579a3

Browse files
committed
Updates Package.swift for Swift Tools 5.5
1 parent e15c512 commit d4579a3

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

Package.swift

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
1+
// swift-tools-version:5.5
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
14
import PackageDescription
25

36
let package = Package(
4-
name: "TSAO"
7+
name: "TSAO",
8+
platforms: [
9+
.iOS(.v14),
10+
],
11+
products: [
12+
.library(
13+
name: "swift_tsao",
14+
targets: ["swift_tsao"]
15+
),
16+
],
17+
targets: [
18+
.target(
19+
name: "swift_tsao",
20+
path: "./Sources"
21+
),
22+
]
523
)

0 commit comments

Comments
 (0)