mirror of
https://github.com/sparrowcode/AlertKit.git
synced 2026-06-16 12:44:37 +00:00
29 lines
502 B
Swift
29 lines
502 B
Swift
// swift-tools-version:5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AlertKit",
|
|
platforms: [
|
|
.iOS(.v13),
|
|
.visionOS(.v1)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "AlertKit",
|
|
targets: ["AlertKit"]
|
|
)
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.target(
|
|
name: "AlertKit",
|
|
swiftSettings: [
|
|
.define("ALERTKIT_SPM")
|
|
]
|
|
)
|
|
],
|
|
swiftLanguageVersions: [.v5]
|
|
)
|
|
|