24 lines
614 B
Swift
24 lines
614 B
Swift
// swift-tools-version: 5.10
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Blainks",
|
|
platforms: [
|
|
.iOS(.v13)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Blainks",
|
|
targets: ["Blainks"]
|
|
)
|
|
],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "Blainks",
|
|
url: "https://blainks.com/distribution/ios/1.5.9/Blainks.xcframework.zip",
|
|
checksum: "d6ee2d1768b0a803a566ac0b24cb5a0d46c4705d8311a84fd8c7bbdb2e2ed278"
|
|
)
|
|
]
|
|
) |