20 lines
372 B
Swift
20 lines
372 B
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "GrowthLapse",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
products: [
|
|
.executable(name: "GrowthLapse", targets: ["GrowthLapse"])
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "GrowthLapse",
|
|
path: "Sources/GrowthLapse"
|
|
)
|
|
]
|
|
)
|