make the thing
This commit is contained in:
+20
-20
@@ -1,26 +1,26 @@
|
||||
// swift-tools-version: 6.3
|
||||
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "aria",
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
|
||||
],
|
||||
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.
|
||||
.executableTarget(
|
||||
name: "aria",
|
||||
dependencies: [
|
||||
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
||||
]
|
||||
),
|
||||
.testTarget(
|
||||
name: "ariaTests",
|
||||
dependencies: ["aria"]
|
||||
),
|
||||
],
|
||||
swiftLanguageModes: [.v6]
|
||||
name: "aria",
|
||||
platforms: [.macOS(.v26)],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
|
||||
.package(url: "https://github.com/tuist/Noora/", from: "0.56.0"),
|
||||
],
|
||||
targets: [
|
||||
.executableTarget(
|
||||
name: "aria",
|
||||
dependencies: [
|
||||
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
||||
.product(name: "Noora", package: "Noora"),
|
||||
]
|
||||
),
|
||||
.testTarget(
|
||||
name: "ariaTests",
|
||||
dependencies: ["aria"]
|
||||
),
|
||||
],
|
||||
swiftLanguageModes: [.v6]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user