mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-04-04 11:05:47 +00:00
30 lines
698 B
Swift
30 lines
698 B
Swift
// swift-tools-version: 5.7
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "peekaboo",
|
|
platforms: [
|
|
.macOS(.v12)
|
|
],
|
|
products: [
|
|
.executable(
|
|
name: "peekaboo",
|
|
targets: ["peekaboo"]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "peekaboo",
|
|
dependencies: [
|
|
.product(name: "ArgumentParser", package: "swift-argument-parser")
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "peekabooTests",
|
|
dependencies: ["peekaboo"]
|
|
)
|
|
]
|
|
)
|