mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 19:44:44 +00:00
23 lines
389 B
Swift
23 lines
389 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Mole",
|
|
platforms: [
|
|
.macOS(.v14)
|
|
],
|
|
products: [
|
|
.executable(name: "Mole", targets: ["Mole"])
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "Mole",
|
|
path: ".",
|
|
exclude: ["Package.swift", "package.sh"],
|
|
resources: [
|
|
.process("Resources")
|
|
]
|
|
)
|
|
]
|
|
)
|