2024-11-09 05:50:21 +01:00
|
|
|
// swift-tools-version:5.10
|
2024-11-07 06:01:17 +01:00
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
2024-11-09 19:23:13 +01:00
|
|
|
name: "RSWeb",
|
2024-11-07 06:01:17 +01:00
|
|
|
platforms: [.macOS(.v14), .iOS(.v17)],
|
|
|
|
products: [
|
2024-11-09 19:23:13 +01:00
|
|
|
.library(
|
|
|
|
name: "RSWeb",
|
|
|
|
type: .dynamic,
|
|
|
|
targets: ["RSWeb"]),
|
2024-11-09 06:52:53 +01:00
|
|
|
],
|
|
|
|
dependencies: [
|
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "RSWeb",
|
2024-11-09 19:23:13 +01:00
|
|
|
swiftSettings: [.unsafeFlags(["-warnings-as-errors"])]
|
|
|
|
),
|
2024-11-09 06:52:53 +01:00
|
|
|
.testTarget(
|
|
|
|
name: "RSWebTests",
|
|
|
|
dependencies: ["RSWeb"]),
|
|
|
|
]
|
2024-11-07 06:01:17 +01:00
|
|
|
)
|