23 lines
468 B
Swift
23 lines
468 B
Swift
// swift-tools-version:5.10
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "felixfoertsch.de",
|
|
platforms: [.macOS(.v12)],
|
|
products: [
|
|
.executable(
|
|
name: "felixfoertsch.de",
|
|
targets: ["felixfoertsch.de"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/johnsundell/publish.git", from: "0.9.0"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "felixfoertsch.de",
|
|
dependencies: [.product(name: "Publish", package: "publish")]
|
|
),
|
|
]
|
|
)
|