Skip to content

Commit aa02ed9

Browse files
authored
fix: add 5.1 SPM file (#337)
1 parent 4187847 commit aa02ed9

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

[email protected]

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// swift-tools-version:5.1
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "ParseSwift",
7+
platforms: [.iOS(.v13), .macOS(.v10_15), .tvOS(.v13), .watchOS(.v6)],
8+
products: [
9+
.library(
10+
name: "ParseSwift",
11+
targets: ["ParseSwift"])
12+
],
13+
targets: [
14+
.target(
15+
name: "ParseSwift",
16+
dependencies: []),
17+
.testTarget(
18+
name: "ParseSwiftTests",
19+
dependencies: ["ParseSwift"],
20+
exclude: ["Info.plist"])
21+
]
22+
)

0 commit comments

Comments
 (0)