mirror of
https://github.com/exyte/PopupView.git
synced 2026-05-07 20:12:47 +00:00
31 lines
728 B
Swift
31 lines
728 B
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PopupView",
|
|
platforms: [
|
|
.iOS(.v15),
|
|
.macOS(.v11),
|
|
.tvOS(.v14),
|
|
.watchOS(.v7)
|
|
],
|
|
products: [
|
|
.library(name: "PopupView", targets: ["PopupView"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/siteline/swiftui-introspect", "1.3.0"..<"27.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "PopupView",
|
|
dependencies: [
|
|
.product(name: "SwiftUIIntrospect", package: "swiftui-introspect"),
|
|
],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency")
|
|
]
|
|
)
|
|
]
|
|
)
|