25 lines
534 B
Swift
25 lines
534 B
Swift
// swift-tools-version: 5.5
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Push-API",
|
|
platforms: [
|
|
.macOS(.v10_15),
|
|
.iOS(.v13)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Push-API",
|
|
targets: ["Push-API"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/kylebrowning/APNSwift.git", from: "4.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Push-API",
|
|
dependencies: [.product(name: "APNSwift", package: "APNSwift")])
|
|
]
|
|
)
|