cg85-v2/Package.swift

32 lines
766 B
Swift

// swift-tools-version: 6.2
import PackageDescription
let package = Package(
name: "Np85Snake",
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "Np85Snake",
targets: ["Np85Snake"]
)
],
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.
.target(
name: "Np85Snake"
),
.executableTarget(
name: "Np85SnakeSkin",
dependencies: [
.target(name: "Np85Snake")
]
),
.testTarget(
name: "Np85SnakeTests",
dependencies: ["Np85Snake"]
),
],
)