mirror of
https://github.com/exyte/PopupView.git
synced 2026-06-06 20:18:33 +00:00
27 lines
534 B
Swift
27 lines
534 B
Swift
// swift-tools-version: 6.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PopupView",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
.macOS(.v14),
|
|
.tvOS(.v17),
|
|
.watchOS(.v10)
|
|
],
|
|
products: [
|
|
.library(name: "PopupView", targets: ["PopupView"]),
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.target(
|
|
name: "PopupView",
|
|
dependencies: [],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency")
|
|
]
|
|
)
|
|
]
|
|
)
|