Files
2026-06-04 09:23:18 +02:00

23 lines
459 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",
linkerSettings: [
.linkedFramework("AVKit")
]
)
]
)