mirror of
https://github.com/sparrowcode/AlertKit.git
synced 2026-06-16 12:44:37 +00:00
17 lines
276 B
Swift
17 lines
276 B
Swift
// swift-tools-version:5.1
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "SPAlert",
|
|
platforms: [
|
|
.iOS(.v10)
|
|
],
|
|
products: [
|
|
.library(name: "SPAlert", targets: ["SPAlert"])
|
|
],
|
|
targets: [
|
|
.target(name: "SPAlert")
|
|
]
|
|
)
|