25 lines
530 B
Swift
25 lines
530 B
Swift
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
let package = Package(
|
|
name: "Milk",
|
|
platforms: [.macOS(.v11)],
|
|
products: [
|
|
.executable(name: "Milk", targets: ["Milk"]),
|
|
],
|
|
dependencies: [
|
|
.package(name: "Tokamak", url: "https://github.com/TokamakUI/Tokamak", from: "0.8.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Milk",
|
|
dependencies: [
|
|
.product(name: "TokamakShim", package: "Tokamak"),
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "MilkTests",
|
|
dependencies: ["Milk"]
|
|
),
|
|
]
|
|
)
|