32 lines
574 B
Swift
32 lines
574 B
Swift
// swift-tools-version: 6.3
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Utility",
|
|
platforms: [
|
|
.macOS(.v15),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Utility",
|
|
targets: [
|
|
"Utility"
|
|
]
|
|
)
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Utility",
|
|
path: "Sources",
|
|
),
|
|
.testTarget(
|
|
name: "UtilityTests",
|
|
dependencies: [
|
|
.byName(name: "Utility")
|
|
],
|
|
path: "Tests"
|
|
),
|
|
]
|
|
)
|