2024-06-20 08:50:12 +03:00
|
|
|
// swift-tools-version: 5.10
|
|
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
2024-06-20 09:16:58 +03:00
|
|
|
name: "mac-crafter",
|
2024-06-20 08:50:12 +03:00
|
|
|
platforms: [
|
|
|
|
.macOS(.v11),
|
|
|
|
],
|
2024-06-20 09:16:58 +03:00
|
|
|
dependencies: [
|
|
|
|
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.4.0")
|
|
|
|
],
|
2024-06-20 08:50:12 +03:00
|
|
|
targets: [
|
|
|
|
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
|
|
|
// Targets can depend on other targets in this package and products from dependencies.
|
2024-06-20 09:16:58 +03:00
|
|
|
.executableTarget(name: "mac-crafter"),
|
2024-06-20 08:50:12 +03:00
|
|
|
]
|
|
|
|
)
|