28 lines
964 B
Swift
28 lines
964 B
Swift
// swift-tools-version:5.1
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "WolfStrings",
|
|
platforms: [
|
|
.iOS(.v9), .macOS(.v10_13), .tvOS(.v11)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "WolfStrings",
|
|
type: .dynamic,
|
|
targets: ["WolfStrings"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/wolfmcnally/WolfNumerics", from: "4.0.0"),
|
|
.package(url: "https://github.com/wolfmcnally/WolfPipe", from: "2.0.0"),
|
|
.package(url: "https://github.com/wolfmcnally/WolfOSBridge", from: "2.0.0"),
|
|
.package(url: "https://github.com/wolfmcnally/WolfWith", from: "2.0.0"),
|
|
.package(url: "https://github.com/wolfmcnally/ExtensibleEnumeratedName", from: "2.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "WolfStrings",
|
|
dependencies: ["WolfNumerics", "WolfPipe", "WolfOSBridge", "WolfWith", "ExtensibleEnumeratedName"])
|
|
]
|
|
)
|