Skip to content

Commit

Permalink
fix: add 5.1 SPM file (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbaker6 authored Jan 29, 2022
1 parent 4187847 commit aa02ed9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// swift-tools-version:5.1

import PackageDescription

let package = Package(
name: "ParseSwift",
platforms: [.iOS(.v13), .macOS(.v10_15), .tvOS(.v13), .watchOS(.v6)],
products: [
.library(
name: "ParseSwift",
targets: ["ParseSwift"])
],
targets: [
.target(
name: "ParseSwift",
dependencies: []),
.testTarget(
name: "ParseSwiftTests",
dependencies: ["ParseSwift"],
exclude: ["Info.plist"])
]
)

0 comments on commit aa02ed9

Please sign in to comment.