ExceptionCatcher/Package.swift

38 lines
527 B
Swift

// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "ExceptionCatcher",
platforms: [
.macOS(.v10_13),
.iOS(.v11),
.tvOS(.v11),
.watchOS(.v4)
],
products: [
.library(
name: "ExceptionCatcher",
targets: [
"ExceptionCatcher"
]
)
],
targets: [
.target(
name: "ExceptionCatcher",
dependencies: [
"Internal"
]
),
.target(
name: "Internal"
),
.testTarget(
name: "ExceptionCatcherTests",
dependencies: [
"ExceptionCatcher"
]
)
]
)