mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-22 15:50:17 +01:00
31 lines
528 B
Swift
31 lines
528 B
Swift
// swift-tools-version: 5.10
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "CommonErrors",
|
|
platforms: [.macOS(.v14), .iOS(.v17)],
|
|
products: [
|
|
.library(
|
|
name: "CommonErrors",
|
|
targets: ["CommonErrors"]),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../Web"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "CommonErrors",
|
|
dependencies: [
|
|
"Web"
|
|
],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency")
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "CommonErrorsTests",
|
|
dependencies: ["CommonErrors"]),
|
|
]
|
|
)
|