mirror of
https://github.com/GayPizzaSpecifications/darwin-apk.git
synced 2025-08-04 05:51:31 +00:00
Skeleton CLI utility 'dpk'
This commit is contained in:
@ -2,9 +2,17 @@
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "darwin-apk",
|
||||
targets: [
|
||||
.executableTarget(
|
||||
name: "darwin-apk"),
|
||||
]
|
||||
name: "darwin-apk",
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
|
||||
],
|
||||
targets: [
|
||||
.executableTarget(
|
||||
name: "dpk",
|
||||
dependencies: [
|
||||
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
||||
],
|
||||
path: "Sources/dpk-cli"
|
||||
),
|
||||
]
|
||||
)
|
||||
|
Reference in New Issue
Block a user