Files
Companion/Package.swift

25 lines
477 B
Swift

// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "ScoobyTag",
platforms: [
.iOS(.v15),
.macOS(.v14),
],
products: [
// An xtool project should contain exactly one library product,
// representing the main app.
.library(
name: "ScoobyTag",
targets: ["ScoobyTag"]
),
],
targets: [
.target(
name: "ScoobyTag"
),
]
)