Skip to content

Commit

Permalink
Add Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Persaud committed Jun 4, 2021
1 parent de1d4db commit 92c6dc3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// swift-tools-version:5.3
import PackageDescription

let package = Package(
name: "SVProgressHUD",
platforms: [
.iOS(.v12),
],
products: [
.library(name: "SVProgressHUD", targets: ["SVProgressHUD"])
],
targets: [
.target(
name: "SVProgressHUD",
path: "SVProgressHUD",
exclude: ["SVProgressHUD-Prefix.pch"],
resources: [.copy("SVProgressHUD.bundle")],
publicHeadersPath: ".")
]
)

0 comments on commit 92c6dc3

Please sign in to comment.