2024-11-08 21:52:53 -08:00
|
|
|
// swift-tools-version:5.10
|
2025-01-06 22:01:11 -08:00
|
|
|
|
2024-11-08 21:52:53 -08:00
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "RSTree",
|
2025-01-06 22:01:11 -08:00
|
|
|
platforms: [.macOS(.v14), .iOS(.v17)],
|
2024-11-08 21:52:53 -08:00
|
|
|
products: [
|
|
|
|
.library(
|
|
|
|
name: "RSTree",
|
|
|
|
type: .dynamic,
|
2025-01-22 22:13:20 -08:00
|
|
|
targets: ["RSTree"])
|
2024-11-08 21:52:53 -08:00
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "RSTree",
|
|
|
|
dependencies: [],
|
|
|
|
swiftSettings: [.unsafeFlags(["-warnings-as-errors"])]
|
|
|
|
)
|
|
|
|
]
|
|
|
|
)
|