Skip to content

Commit

Permalink
Add visionOS as supported platform to SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
onevcat committed Jun 23, 2023
1 parent 8a53a93 commit 3dea190
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.9
import PackageDescription

let package = Package(
name: "Kingfisher",
platforms: [
.iOS(.v12),
.macOS(.v10_14),
.tvOS(.v12),
.watchOS(.v5),
.visionOS(.v1)
],
products: [
.library(name: "Kingfisher", targets: ["Kingfisher"])
],
targets: [
.target(
name: "Kingfisher",
path: "Sources"
)
]
)

0 comments on commit 3dea190

Please sign in to comment.